Python 3 – String islower() 方法

Python 3 – String islower() 方法

描述

islower() 方法检查字符串中所有基于大小写的字符(字母)是否为小写。

语法

islower() 方法的语法如下 −

str.islower()

参数

NA

返回值

如果字符串中的所有有大小写的字符都为小写,并且至少有一个有大小写,则此方法返回 true,否则返回 false。

示例

以下示例演示了 islower() 方法的用法。

#!/usr/bin/python3

str = "THIS is string example....wow!!!"
print (str.islower())

str = "this is string example....wow!!!"
print (str.islower())

结果

运行上述程序,它会产生以下结果 −

False
True

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程