Python 基础教程

Python 流程控制

Python 函数

Python 数据类型

Python 文件操作

Python 对象和类

Python 日期和时间

Python 高级知识

Python 参考手册

Python 字符串 islower() 使用方法及示例

Python 字符串方法

如果字符串中的所有字母均为小写字母,则islower()方法返回True。如果字符串包含至少一个大写字母,则返回False。

islower()的语法为:

string.islower()

islower()参数

islower()方法不带任何参数。

islower()返回值

islower()方法返回:

  • True 如果字符串中存在的所有字母均为小写字母。

  • False 如果字符串包含至少一个大写字母。

示例1:从islower()返回值

s = 'this is good'
print(s.islower())

s = 'th!s is a1so g00d'
print(s.islower())

s = 'this is Not good'
print(s.islower())

运行该程序时,输出为:

True
True
False

示例2:如何在程序中使用islower()?

s = 'this is good'
if s.islower() == True:
  print('不包含大写字母。')
else:
  print('包含大写字母。')
  
s = 'this is Good'
if s.islower() == True:
  print('不包含大写字母。')
else:
  print('包含大写字母。')

运行该程序时,输出为:

不包含大写字母。
包含大写字母。

Python 字符串方法