如何进行不区分大小写的字符串比较?

如何进行不区分大小写的字符串比较?

如何在Python中进行不区分大小写的字符串比较?

我想用一种非常简单和Pythonic的方式封装规则字符串与存储库字符串的比较。我还希望能够在使用常规python字符串的字符串散列中查找值。


动漫人物
浏览 448回答 3
3回答

一只斗牛犬

假设ASCII字符串:string1 = 'Hello'string2 = 'hello'if string1.lower() == string2.lower():     print("The strings are the same (case insensitive)")else:     print("The strings are NOT the same (case insensitive)")
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python