在Python中,要忽略字符串中的大小写,可以使用str.lower()
或str.upper()
方法将字符串转换为全小写或全大写,然后进行比较。例如:
str1 = "Hello World"
str2 = "hello world"
if str1.lower() == str2.lower():
print("Strings are equal, ignoring case")
else:
print("Strings are not equal")
这段代码将输出 "Strings are equal, ignoring case",因为将两个字符串都转换为全小写后,它们是相等的。
领取专属 10元无门槛券
手把手带您无忧上云