您的当前位置:首页正文

python的upper函数怎么用

2024-08-01 来源:化拓教育网

Python upper() 方法将字符串中的小写字母转为大写字母。

upper()方法语法:

str.upper()

参数

NA。

返回值

返回小写字母转为大写字母的字符串。

实例

以下实例展示了 upper()函数的使用方法:

str = "this is string example....wow!!!";
print "str.upper() : ", str.upper()

输出结果

str.upper() :  THIS IS STRING EXAMPLE....WOW!!!