python中.lower()是什么

.lower() 是 Python 中字符串对象的一个方法。它将字符串中的所有字母转换为小写字母。

例如:

string = "Hello World!"
lower_string = string.lower()
print(lower_string)  # 输出 "hello world!"

注意:这个方法不会改变原字符串的值,而是返回一个新的转换为小写字母的字符串。如果你想改变原字符串的值,你可以使用赋值语句:

string = "Hello World!"
string = string.lower()
print(string)  # 输出 "hello world!"

.lower() 方法在比较字符串的大小写时很有用,因为你可以将两个字符串转换为小写字母后再进行比较。例如:

string1 ="Hello"
string2 = "HELLO"

if string1.lower() == string2.lower():
    print("The strings are equal.")
else:
    print("The strings are not equal.")

# 输出 "The strings are equal."

你可能感兴趣的:(python中.lower()是什么)