python的upper函数怎么用

python

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!!!

网,大量的免费python学习资料,欢迎在线学习!

以上是 python的upper函数怎么用 的全部内容, 来源链接: utcz.com/z/525052.html

回到顶部