python 中的istitle()
函数有助于检查字符串是否有标题。如果是,则返回真,否则返回假。这里的单词 titlecased 表示每个单词的第一个字符是大写字母,单词中的其余字符是小写字母。
**string.istitle()**
istitle()
参数:istitle()
方法不接受任何参数。在检查字符串时,所有符号和数字都被忽略。
istitle()
返回值返回值始终是布尔值。如果是空字符串、数字字符串或只有符号的字符串,函数将返回 False。
| 投入 | 返回值 | | 标题大小写字符串 | 真实的 | | 不是标题大小写字符串 | 错误的 |
istitle()
方法的示例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
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
文章题目:创新互联Python教程:Pythonistitle()
网页路径:http://www.csdahua.cn/qtweb/news4/347204.html
网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网