str.lower() 字串全小寫。 str.upper() 字串全大寫。
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'
每個字首字母大寫
My World, My Python
欢迎选择我的课程,让我们一起见证您的进步~~
參考文章:Python字串操作相關問題
str.lower() 字串全小寫。 str.upper() 字串全大寫。 str.capitalize() 字串首字母大寫。 str.title() 字串每個單字首字母都大寫。
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'
雷雷
參考文章:Python字串操作相關問題
字串大小寫轉換
雷雷