Python String istitle() 方法返回 True 如果字符串是标题字符串,否则返回 False。什么是冠名?每个单词的第一个字符为大写,其余所有字符为小写字母的字符串。
用法:
string.istitle()
参数:
istitle() 方法不带任何参数。
返回值:
如果字符串是标题字符串,则为 True,否则返回 False。
例子1
Python3
# First character in each word is
# uppercase and remaining lowercases
s = 'Geeks For Geeks'
print(s.istitle())
# First character in first
# word is lowercase
s = 'geeks For Geeks'
print(s.istitle())
# Third word has uppercase
# characters at middle
s = 'Geeks For GEEKs'
print(s.istitle())
s = '6041 Is My Number'
print(s.istitle())
# word has uppercase
# characters at middle
s = 'GEEKS'
print(s.istitle())
输出:
True False False True False
例子2
Python3
s = 'I Love Geeks For Geeks'
if s.istitle() == True:
print('Titlecased String')
else:
print('Not a Titlecased String')
s = 'I Love geeks for geeks'
if s.istitle() == True:
print('Titlecased String')
else:
print('Not a Titlecased String')
输出:
Titlecased String Not a Titlecased String
相关用法
- Python String istitle()用法及代码示例
- Python String isnumeric()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String isspace()用法及代码示例
- Python String isdigit()用法及代码示例
- Python String isupper()用法及代码示例
- Python String isalpha()用法及代码示例
- Python String islower()用法及代码示例
- Python String isidentifier()用法及代码示例
- Python String isdecimal()用法及代码示例
- Python String index()用法及代码示例
- Python String Center()用法及代码示例
- Python String decode()用法及代码示例
- Python String join()用法及代码示例
- Python String rsplit()用法及代码示例
- Python String startswith()用法及代码示例
- Python String splitlines()用法及代码示例
- Python String upper()用法及代码示例
- Python String translate()用法及代码示例
注:本文由纯净天空筛选整理自GeeksforGeeks大神的英文原创作品 Python String istitle() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。