Python upper()方法
Python upper()方法
Python upper() 方法将字符串中的小写字母转为大写字母。
语法
upper()方法语法:
str.upper()
参数
- NA。
返回值
返回小写字母转为大写字母的字符串。
实例
以下实例展示了 upper()函数的使用方法:
#!/usr/bin/python str = "this is string example....wow/b64/"; print "str.upper() : ", str.upper()
以上实例输出结果如下:
str.upper() : THIS IS STRING EXAMPLE....WOW/b64/
相关文章
- Python 元组
- Python 面向对象
- Python 图形
- Python 摊销分析
- Python 算法理由
- Python3 数据类型
- Python3 模块
- Python3 网络编程
- Python3 XML 解析
- Python MongoDB 数据库连接 - PyMongo 驱动
- Python os.fdopen() 方法
- Python os.major() 方法
- Python os.makedev() 方法
- Python os.tmpnam() 方法
- Python List cmp()方法
- Python List append()方法
- Python List count()方法
- Python 字典 Dictionary fromkeys()方法
- Python 字典 Dictionary pop() 方法
- Python time altzone()方法