DAY 005--str(字母大小写方法总结)
str的大小写方法:
1、str.capitalize(obj)
- 首字母转变成大写,如果首子母已经是大写则还是输出首字母大写结果
s1="abcdef"
s2="A123"
print(s1.capitalize())
print(s2.capitalize())
Abcdef
A123
2、str.casefold()=str.lower()
- 字符串中所有内容,大写转小写
s2="AaBbCc123"
print(s2.casefold())
print(s2.lower())
aabbcc123
aabbcc123
3、str.upper()
- 字符串中所有内容,小写转大写
s2="AaBbCc123"
print(s2.upper())
AABBCC123
4、str.title()
- 字符串中所有首字母变为大写
s2="what is your name?"
print(s2.title())
What Is Your Name?
5、str.swapcase()
- 字符串中所有内容大小写互换
s2="AaBbCc"
print(s2.swapcase())
aAbBcC
总结:这些知识点都是字符串的大小写转换的方法,重新整理,因为不会,嘤嘤嘤~~~。学而时习之,不亦说乎?
Mark on 2018.04.07