例如:
转换成大写字符串:
txt = "Hello my friends" x = txt.upper() print(x)
1、定义和用法
upper()
方法返回一个字符串,其中所有字符均大写。
符号和数字将被忽略。
2、调用语法
string.upper()
3、参数说明
没有参数
例如:
转换成大写字符串:
txt = "Hello my friends" x = txt.upper() print(x)
upper()
方法返回一个字符串,其中所有字符均大写。
符号和数字将被忽略。
string.upper()
没有参数