Python中字符串处理函数 title() 函数的作用是把字符串中每个单词的首字母变成大写形式,其余字母变成小写形式。
str.title()
str:是待处理的字符串或字符串变量;
参数:该函数没有参数;
返回值:该函数返回处理后的字符串,该函数不会影响原字符串的内容和形式。
1、使用示例1
str1 = "python is simple"
print(str1.title()) # Python Is Simple
str1 = "Python is SIMPLE"
print(str1.title()) # Python Is Simple
str1 = "PYTHON IS SIMPLE"
print(str1.title()) # Python Is Simple
str1 = "PYthon iS SimPle"
print(str1.title()) # Python Is Simple
输出结果:
Python Is Simple
Python Is Simple
Python Is Simple
Python Is Simple
从上面各例可以看出,不管原来字符串中字母的大小写是怎么样的,最后都被转换成每个单词的首字母是大写形式,而其它字母是小写的形式。
2、title()使用示例2
str1 = "I'm a student."
print(str1.title())
str1 = "Python3 is simple."
print(str1.title())
str1 = "123abc hi/t abc123"
print(str1.title())
str1 = "#abc$def&REt/r/nLOVE/tStorY"
print(str1.title())
输出结果:
I'M A Student.
从以上例子的输出结果可以看出,Python title()函数把句子中的撇号('),特殊字符(如#,¥,&,| 等),空白转义字符(如/t,/r/n,/n等),数字,非字母字符等都视为一个单词的分界符,然后把单词的首字母变成大写,其余字母变成小写。
Python3 Is Simple.
123Abc Hi Abc123
#Abc$Def&Ret
Love Story
本文(完)
新闻热点
疑难解答