Python/ref string upper

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python字符串upper()方法

❮字符串方法

大写字符串:

    txt = "Hello my friends"

x = txt.upper()

print(x)

定义和用法

The upper() 方法返回一个字符串,其中所有字符均大写。

符号和数字将被忽略。

句法

string.upper()
  

参数值

没有参数

❮字符串方法