如何进行不区分大小写的字符串比较?如何在Python中进行不区分大小写的字符串比较?我想用一种非常简单和Pythonic的方式封装规则字符串与存储库字符串的比较。我还希望能够在使用常规python字符串的字符串散列中查找值。
3 回答
一只斗牛犬
TA贡献1784条经验 获得超2个赞
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)")
添加回答
举报
0/150
提交
取消