Python lower()方法

2021-09-04 15:09 更新

Python lower()方法


描述

Python lower() 方法轉(zhuǎn)換字符串中所有大寫(xiě)字符為小寫(xiě)。

語(yǔ)法

lower()方法語(yǔ)法:

str.lower()

參數(shù)

  • 無(wú)。

返回值

返回將字符串中所有大寫(xiě)字符轉(zhuǎn)換為小寫(xiě)后生成的字符串。

實(shí)例

以下實(shí)例展示了lower()的使用方法:

#!/usr/bin/python

str = "THIS IS STRING EXAMPLE....WOW!!!";

print str.lower();

以上實(shí)例輸出結(jié)果如下:

this is string example....wow!!!
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)