Python swapcase()方法
Python swapcase()方法
Python swapcase() 方法用于對字符串的大小寫字母進行轉(zhuǎn)換。
語法
swapcase()方法語法:
str.swapcase();
參數(shù)
- NA。
返回值
返回大小寫字母轉(zhuǎn)換后生成的新字符串。
實例
以下實例展示了swapcase()函數(shù)的使用方法:
#!/usr/bin/python str = "this is string example....wow/b64/"; print str.swapcase(); str = "THIS IS STRING EXAMPLE....WOW/b64/"; print str.swapcase();
以上實例輸出結(jié)果如下:
THIS IS STRING EXAMPLE....WOW/b64/ this is string example....wow/b64/
相關(guān)文章
- Python break 語句
- Python pass 語句
- Python 日期和時間
- Python 哈希表
- Python 圖形
- Python 圖算法
- Python 算法類
- Python3 基礎(chǔ)語法
- Python3 字典(Dictionary)
- Python3 XML 解析
- Python3 JSON 解析
- Python File flush() 方法
- Python File fileno() 方法
- Python os.chmod() 方法
- Python os.fsync() 方法
- Python os.isatty() 方法
- Python decode()方法
- Python 字典 Dictionary cmp()方法
- Python 字典 Dictionary str()方法
- Python 字典 Dictionary keys()方法