1.在python中主要有四种转换方式,如下图
2.这里我们举例说明各自的用途:
#大小写转换
str3="Hello"
str4="WORLD"
str5="shirley.xie"
str6="welcometohere"
print(str3.upper()) #末哥被所某香探留例转化所有为大写
print(str4.lower()) #转换所有为小写
print("shirley.xie".title()) #转换顷乱宏陪乎每个单词买首字母为大写
print("welco钱革青越滑metohere".capitalize()) #转换混苦怎庆套跟斤我措断取第一雀册个首字母大写
输出的结果为:
HELLO
world
Shirley.Xie
Welcometohere