python之字符串修改

将字符串变成标题或句子在这里插入代码片

a="i love chian"
cpt=a.capitalize()
tit=a.title()
print("字符串a整体首字母大写:"+cpt)
print("字符串a单词首字母大写:"+tit)

在这里插入图片描述
还有下面的大小写互换

a="I Love Chian"
swp=a.swapcase()
up=a.upper()
print("字符串a字母大小写互换:"+swp)
print("字符串a字母小写换成大写:"+up)

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/GrofChen/article/details/92401031
今日推荐