python中swapcase是什麼意思?
Python swapcase()方法是用來轉換字串的大小寫字母。
swapcase()方法語法:
str.swapcase();
參數
NA。
傳回值
傳回大小寫字母轉換後產生的新字串。
以下實例展示了swapcase()函數的使用方法:
#!/usr/bin/python str = "this is string example....wow!!!"; print str.swapcase(); str = "THIS IS STRING EXAMPLE....WOW!!!"; print str.swapcase();
以上實例輸出結果如下:
THIS IS STRING EXAMPLE....WOW!!! this is string example....wow!!!
相關推薦:《Python教程》
以上是python中swapcase是什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!