str.lower()
字串全小寫。 str.upper()
字串全大寫。
>>> str = 'my world, MY PYTHON'
>>> str.lower()
'my world, my python'
>>> str.upper()
'MY WORLD, MY PYTHON'
如何讓字串每個字首字母大寫
? 使 str = 'My World, My Python
'
仅有的幸福2017-06-28 09:25:09
參考文章:Python字串操作相關問題
str.lower()
字串全小寫。str.upper()
字串全大寫。str.capitalize()
字串首字母大寫。str.title()
字串每個單字首字母都大寫。
>>> str = 'my world, MY PYTHON'
>>> str.lower()
'my world, my python'
>>> str.upper()
'MY WORLD, MY PYTHON'
>>> str.capitalize()
'My world, my python'
>>> str.title()
'My World, My Python'