为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

动漫人物 2019-06-14 16:26:24
如何进行不区分大小写的字符串比较?如何在Python中进行不区分大小写的字符串比较?我想用一种非常简单和Pythonic的方式封装规则字符串与存储库字符串的比较。我还希望能够在使用常规python字符串的字符串散列中查找值。
查看完整描述

3 回答

?
一只斗牛犬

TA贡献1784条经验 获得超2个赞

假设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)")


查看完整回答
反对 回复 2019-06-14
  • 3 回答
  • 0 关注
  • 447 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信