python中的upper是啥意思
晓曦&sea
2021-02-25 14:20:4132751浏览 · 0收藏 · 0评论
在python中,upper有“大小字母”的意思;它是一种内置方法,用于将字符串中的小写字母转为大写字母;语法为【str.upper()】;返回值为字符串。python基础教程
Python upper()方法
Python 字符串
描述
Python upper() 方法将字符串中的小写字母转为大写字母。
语法
upper()方法语法:
str.upper()
参数
NA。
返回值
返回小写字母转为大写字母的字符串。
实例
以下实例展示了 upper()函数的使用方法:
#!/usr/bin/python str = "this is string example....wow!!!" print "str.upper() : ", str.upper()
以上实例输出结果如下:
str.upper() : THIS IS STRING EXAMPLE....WOW!!!
推荐课程:Python程序设计
关注公众号,随时随地在线学习