码迷,mamicode.com
首页 > 其他好文 > 详细

字符串方法title()、istitle()

时间:2018-08-16 13:42:51      阅读:377      评论:0      收藏:0      [点我收藏+]

标签:int   返回   class   als   div   检测   运用   lse   col   

title()、istitle()

语义解释:

title() 方法返回"标题化"的字符串,就是说所有单词的首个字母转化为大写,其余字母均为小写。

istitle() 方法检测字符串中所有的单词拼写首字母是否为大写,且其他字母为小写。

实际运用:

1 a=b=hello  world!
2 print(a.title())
3 print(a.title().istitle())
4 print(b.istitle())

Hello World!
True
False

 

字符串方法title()、istitle()

标签:int   返回   class   als   div   检测   运用   lse   col   

原文地址:https://www.cnblogs.com/zc13/p/9486290.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!