首页 > 后端开发 > Python教程 > python用函数怎么判断大小写

python用函数怎么判断大小写

(*-*)浩
发布: 2019-07-04 14:11:47
原创
12420 人浏览过

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

python用函数怎么判断大小写

例如:(推荐学习: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用函数怎么判断大小写的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板