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

以下代码是Python中不区分大小写的字符串比较的示例。

示例

string1 = 'Star Wars'

string2 = 'star wars'

if string1.lower() == string2.lower():

    print "The strings are case insensitive"

else:

    print "The strings are not case insensitive"

输出结果

此代码提供以下输出

The strings are case insensitive

以上是 如何在Python中进行不区分大小写的字符串比较? 的全部内容, 来源链接: utcz.com/z/326954.html

回到顶部