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字符串操作相关问题
字符串大小写转换
雷雷