upper()

提供: Wikiducca
移動: 案内検索

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


例:

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