Python upper()方法
Python upper()方法
Python upper() 方法將字符串中的小寫字母轉(zhuǎn)為大寫字母。
語(yǔ)法
upper()方法語(yǔ)法:
str.upper()
參數(shù)
- NA。
返回值
返回小寫字母轉(zhuǎn)為大寫字母的字符串。
實(shí)例
以下實(shí)例展示了 upper()函數(shù)的使用方法:
#!/usr/bin/python str = "this is string example....wow/b64/"; print "str.upper() : ", str.upper()
以上實(shí)例輸出結(jié)果如下:
str.upper() : THIS IS STRING EXAMPLE....WOW/b64/
相關(guān)文章
- Python 元組
- Python 面向?qū)ο?/a>
- Python 圖形
- Python 攤銷分析
- Python 算法理由
- Python3 數(shù)據(jù)類型
- Python3 模塊
- Python3 網(wǎng)絡(luò)編程
- Python3 XML 解析
- Python MongoDB 數(shù)據(jù)庫(kù)連接 - PyMongo 驅(qū)動(dòng)
- 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()方法