Python 的 str.istitle()
方法返回 boolean
指示字符串是否采用标题大小写且至少包含一个字符。
注意
Titlecased 字符串是大写字符只能跟在非大小写字符后面,小写字符只能跟在大小写字符后面。示例:这是一个标题字符串
参数
无参数。
返回值
单个 boolean
指示字符串是否采用标题大小写且至少包含一个字符。
例子
基本用法
检查 'This is not a titlecased string'
是否是标题字符串:
x = 'This is not a titlecased string'
x.istitle()
False
在此示例中,小写字符后面跟着非大小写字符(例如空格),因此该字符串不是标题大小写的。
检查 'This Is A Titlecased String'
是否是标题字符串:
y = 'This Is A Titlecased String'
y.istitle()
True
相关用法
- Python String istitle()用法及代码示例
- Python String isnumeric方法用法及代码示例
- Python String isalnum()用法及代码示例
- Python String isidentifier()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String isalnum方法用法及代码示例
- Python String isalpha方法用法及代码示例
- Python String isspace()用法及代码示例
- Python String isspace方法用法及代码示例
- Python String isprintable方法用法及代码示例
- Python String isdecimal()用法及代码示例
- Python String isdigit方法用法及代码示例
- Python String isdigit()用法及代码示例
- Python String isupper()用法及代码示例
- Python String isalpha()用法及代码示例
- Python String isdecimal方法用法及代码示例
- Python String islower方法用法及代码示例
- Python String islower()用法及代码示例
- Python String isascii方法用法及代码示例
- Python String isnumeric()用法及代码示例
- Python String isidentifier方法用法及代码示例
- Python String isupper方法用法及代码示例
- Python String index()用法及代码示例
- Python String index方法用法及代码示例
- Python String count方法用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python String | istitle method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。