python的upper函数怎么用
686次观看
标签:
函数
python
upper
老师回答
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学习视频,欢迎在线学习!
©本文版权归环球青藤所有,任何形式转载请联系我们。
免费直播
精选课程
相关推荐