Python中提供了大量的内建字符串函数可以帮助我们解决很多实际问题。Python string istitle()函数也是字符串处理的内建函数之一。
Python istitle()函数的作用是检查一个字符串中的每个单词开头字母是否为大写,而其它字符都为小写形式,如果是这样则返回True,否则返回 False。
一、istitle()函数的语法格式
str.istitle()
该函数没有参数,str是待检查的字符串或字符串变量。
该函数的返回值有两个:
True :当字符串中每个单词的首字母为大写,而其余字符是小写形式时返回True。
False:当不满足上面条件时则返回False。
二、istitle()函数实例
>>> str1 = "Hello Python."
>>> print(str1.istitle())
True
该例中输出为True,因为构成字符串的每个单词开首字符都为大写,而其余字符为小写。
>>> str1 = "Hello,python."
>>> print(str1.istitle())
Fasle
该例输出为False,因为字符串中第二个单词python 的开头字母是小写。
>>> str1 = "hello,python"
>>> print(str1.istitle())
False
该例输出为False,因为两个单词的开首字符都不是大写。
>>> str1 = "I Was A TeacHer In Last Year."
>>> print(str1.istitle())
False
该例输出为False,因为TeacHer这个单词除了开头字符为大写外,其余字母不是小写形式。
>>> str1 = "达内"
>>> print(str1.istitle())
False
>>> str2 = "达内It乐园"
>>> print(str2.istitle())
True
字符串str1中不包含单词,也会输出False,字符串str2中包含字母It,且首字母为大写,所以为True。
>>> str1 = ""
>>> print(str1.istitle())
False
空字符串也会输出False。
上一篇:java环境变量设置目的
下一篇:企业收到税务退税凭证怎么做