📅  最后修改于: 2020-10-30 06:21:23             🧑  作者: Mango
如果字符串中的所有字符均为小写,则Python字符串islower()方法返回True。如果不是小写字母,则返回False。
islower()
不需要任何参数。
它返回True或False。
让我们看一下islower()方法的一些例子,以了解它的功能。
一个简单的示例,以了解如何应用此方法。它返回true,请参见下面的示例。
# Python islower() method example
# Variable declaration
str = "javatpoint"
# Calling function
str2 = str.islower()
# Displaying result
print(str2)
输出:
True
如果发现除小写字母以外的其他任何单个字符,则返回False。请参见下面的示例。
# Python islower() method example
# Variable declaration
str = "Welcome To JavaTpoint"
# Calling function
str2 = str.islower()
# Displaying result
print(str2)
输出:
False
字符串也可以有数字,并且此方法在字母大小写下有效,并且忽略数字。因此它返回True,请参见下面的示例。
# Python islower() method example
# Variable declaration
str = "hi, my contact is 9856******"
# Calling function
str2 = str.islower()
# Displaying result
print(str2)
输出:
True