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()方法