跳至主要内容

lower()

Python 中的 lower() 方法是一种字符串方法,它返回一个字符串的副本,其中所有字母字符都已转换为小写。它不会修改原始字符串,而是返回一个包含所有小写字符的新字符串。

参数值

此函数不接受任何参数。

返回值

lower() 方法返回一个新字符串,其中所有大写字符都已转换为小写。

如何在 Python 中使用 lower()

示例 1

lower() 方法返回一个字符串的副本,其中所有基于大小写的字符都已转换为小写。

string = 'Hello, World!'
lower_string = string.lower()
print(lower_string) # Output: hello, world!
示例 2

它不会修改原始字符串,而是返回一个包含所有小写字符的新字符串。

text = 'PYTHON IS FUN'
lower_text = text.lower()
print(lower_text) # Output: python is fun
示例 3

lower() 方法对于不区分大小写的比较和数据处理很有用。

word = 'HELLO'
if word.lower() == 'hello':
    print('Words match')
else:
    print('Words do not match') # Output: Words match