📌  相关文章
📜  python 字符串匹配忽略大小写 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:48.344000             🧑  作者: Mango

代码示例1
if firstStr.lower() == secStr.lower():
    print('Both Strings are same')
else:
    print('Strings are not same')