轻松上手,快乐学习!

Python 字符串 upper() 方法


实例

全转为大写字符串:
txt = "Hello my friends"

x = txt.upper()

print(x)
运行示例»

定义和用法

upper()方法返回一个字符串,其中所有字符都是大写字母。  符号和数字被忽略。

语法

string.upper()

参数值

没有参数