Python lower()方法
Python lower()方法
Python lower() 方法轉(zhuǎn)換字符串中所有大寫字符為小寫。
語法
lower()方法語法:
str.lower()
參數(shù)
- 無。
返回值
返回將字符串中所有大寫字符轉(zhuǎn)換為小寫后生成的字符串。
實(shí)例
以下實(shí)例展示了lower()的使用方法:
#!/usr/bin/python str = "THIS IS STRING EXAMPLE....WOW/b64/"; print str.lower();
以上實(shí)例輸出結(jié)果如下:
this is string example....wow/b64/
相關(guān)文章
- Python break 語句
- Python 操作 MySQL 數(shù)據(jù)庫
- Python XML 解析
- Python 數(shù)組
- Python 列表
- Python 矩陣
- Python 回溯
- Python 樹遍歷算法
- Python 圖算法
- Python 算法理由
- Python3 簡介
- Python File isatty() 方法
- Python os.fchdir() 方法
- Python os.mkdir() 方法
- Python os.remove() 方法
- Python os.stat_float_times() 方法
- Python ljust()方法
- Python swapcase()方法
- Python List sort()方法
- Python 字典 Dictionary keys()方法