python用函数怎么判断大小写

互联网 19-7-4
Python提供了isupper(),islower(),istitle()方法用来判断字符串的大小写, 具体实例如下:

例如:(推荐学习:Python视频教程)

>>> str_1 = "HELLO PYTHON" # 全大写 >>> str_2 = "Hello PYTHON" # 大小写混合 >>> str_3 = "Hello Python" # 单词首字母大写 >>> str_4 = "hello python" # 全小写

isupper() 判断是否全是大写

>>> str_1.isupper() True >>> str_2.isupper() False >>> str_3.isupper() False >>> str_4.isupper() False

islower()判断是否全是小写

>>> str_1.islower() False >>> str_2.islower() False >>> str_3.islower() False >>> str_4.islower() True

istitle()判断首字母是否大写, 其余的是否小写

>>> str_1.istitle() False >>> str_2.istitle() False >>> str_3.istitle() True >>> str_4.istitle() False

更多Python相关技术文章,请访问Python教程栏目进行学习!

以上就是python用函数怎么判断大小写的详细内容,更多内容请关注技术你好其它相关文章!

来源链接:
免责声明:
1.资讯内容不构成投资建议,投资者应独立决策并自行承担风险
2.本文版权归属原作所有,仅代表作者本人观点,不代表本站的观点或立场
标签: Python
上一篇:php获取远程图片并下载保存到本地的方法分析 下一篇:Python怎么把三位数拆开

相关资讯