我是靠谱客的博主 迷你外套,最近开发中收集的这篇文章主要介绍python用函数怎么判断大小写,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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用函数怎么判断大小写所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(66)

评论列表共有 0 条评论

立即
投稿
返回
顶部