python判断字符是否为大写字母,python 判断字符大小写
例子:
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()
假islower()判断是否全是小写
str_1.islower()
错误的
str_2.islower()
错误的
str_3.islower()
错误的
str_4.islower()
真正的istitle()判断首字母是否大写,其余的是否小写
str_1.istitle()
错误的
str_2.istitle()
错误的
str_3.istitle()
真实的
str_4.istitle()
错误的盛行信息技术软件开发工作室,免费的在线学习大蟒平台,欢迎关注!
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。