导语:
本文主要介绍了关于python怎么判断大小写的相关知识,包括python大小写敏感吗,以及python判断大小写并转换这些编程知识,希望对大家有参考作用。
Python提供了isupper()、islower()、istitle()方法来判断字符串的大小写。具体示例如下:
>>> 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 循环语句(for 循环)01/10
- ♥ Python schedule 任务调度及其用法11/13
- ♥ python中的不等号是什么09/08
- ♥ 如何安装python web.py12/31
- ♥ python哈希哈希图01/09
- ♥ python如何转换为私有属性10/15
内容反馈