python 判断是否为小写is lower函数

  • Post category:Python

Python 的字符串类型 str 提供了很多判断函数, islower() 就是其中之一,可以判断一个字符串中所有字符是否全部为小写字母,如果是,则返回 True,否则返回 False。

这里是 islower() 函数的详细攻略:

语法

string.islower()

参数

islower() 函数没有参数

返回值

返回一个 bool 类型的值,如果字符串中所有字符都是小写字母,则返回 True,否则返回 False

示例

下面是两个代码示例,用于说明该函数的使用方法:

示例一:使用 islower() 函数判断一个字符串是否全部是小写字母:

string = 'welcome to python'
result = string.islower()
print(result)  # True

解释:此示例中 string 变量的值为 ‘welcome to python’,该变量调用了 islower() 函数,返回值为 True。这是因为该字符串中的所有字母都是小写字母。

示例二:使用 islower() 函数判断字符串中是否包含大写字母:

string = 'Hello, World!'
result = string.islower()
print(result)  # False

解释:此示例中 string 变量的值为 ‘Hello, World!’,该变量调用了 islower() 函数,返回值为 False。这是因为该字符串中包含了大写字母。

这就是Python中 islower() 函数的完整攻略,希望对您有所帮助。