python 中的istitle()
函数有助于检查字符串是否有标题。如果是,则返回真,否则返回假。这里的单词 titlecased 表示每个单词的第一个字符是大写字母,单词中的其余字符是小写字母。
**string.istitle()**
istitle()
参数:
istitle()
方法不接受任何参数。在检查字符串时,所有符号和数字都被忽略。
istitle()
返回值
返回值始终是布尔值。如果是空字符串、数字字符串或只有符号的字符串,函数将返回 False。
| 投入 | 返回值 | | 标题大小写字符串 | 真实的 | | 不是标题大小写字符串 | 错误的 |
Python 中istitle()
方法的示例
示例 1:istitel()
在 Python 中是如何工作的?
string = 'Hi How Are You'
print(string.istitle())
string = 'Hi how are you'
print(string.istitle())
string = 'Hi How Are You?'
print(string.istitle())
string = '121 Hi How Are You'
print(string.istitle())
string = 'HOW ARE YOU'
print(string.istitle())
输出:
True
False
True
True
False
示例 2:如何在 Python 中使用istitle()
?
string = 'Python programming'
if string.istitle() == True:
print('It is a Titlecased String')
else:
print('It is not a Titlecased String')
string = 'PYthon PRogramming'
if string.istitle() == True:
print('It is a Titlecased String')
else:
print('It is not a Titlecased String')
输出:
It is a Titlecased String
It is not a Titlecased String
本文链接:https://my.lmcjl.com/post/6987.html
展开阅读全文
4 评论