跳至主要内容

upper()

upper() 方法是 Python 中的字符串方法,它将字符串中的所有字符转换为大写。它返回一个新字符串,其中所有字符都转换为大写。

参数值

此函数不接受任何参数。

返回值

upper() 方法返回一个包含所有大写字符的新字符串。

如何在 Python 中使用 upper()

示例 1

upper() 方法返回字符串的大写副本。

string = 'hello world'
print(string.upper())
示例 2

它不会修改原始字符串,而是创建一个新字符串,其中所有字母都转换为大写。

text = 'Python is amazing'
upper_text = text.upper()
print(upper_text)
示例 3

当需要执行不区分大小写的比较或搜索时,它很有用。

input_string = input('Enter a word: ')
if input_string.upper() == 'PYTHON':
    print('You entered Python!')