lower()

提供: Wikiducca
移動: 案内検索

文字列オブジェクトを小文字に変換する。


例:

>>> ababa = "ABCDE"
>>> print ababa
ABCDE
>>> print ababa.lower()
abcde