関数の機能 lower:小文字に変換した文字列を返却 upper:大文字に変換した文字列を返却
>>> s = 'This is an Example of lower and upper Method.'
>>> s.lower()
'this is an example of lower and upper method.'
>>> s.upper()
'THIS IS AN EXAMPLE OF LOWER AND UPPER METHOD.'
関連項目 関数str.capitalizeの使い方の例 関数str.casefoldの使い方の例 関数str.swapcaseの使い方の例 関数str.titleの使い方の例