python怎么判断大小写字母个数,python如何判断大小写
大蟒提供了isupper(),islower(),istitle()方法用来判断字符串的大小写,具体实例如下:
str_1=HELLOPYTHON#全大写
str_2=HelloPYTHON#大小写混合
str_3=HelloPython#单词首字母大写
str_4=hellopython#全小写isupper()判断是否全是大写
str_1.isupper()
真实的
str_2.isupper()
错误的
str_3.isupper()
错误的
str_4.isupper()
错误的相关推荐: 《Python入门教程》
islower()判断是否全是小写
str_1.islower()
错误的
str_2.islower()
错误的
str_3.islower()
错误的
str_4.islower()
真实标题()判断首字母是否大写,其余的是否小写
str_1.istitle()
错误的
str_2.istitle()
错误的
str_3.istitle()
真实的
str_4.istitle()
错误的
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。