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

  • Post category:Python

Python提供了字符串的islower()方法,用于判断当前字符串是否全为小写字母。islower()方法返回true或false。

使用方法:

string.islower()

其中,string为需要判断的字符串。

下面是islower()函数的使用示例:

代码示例1:islower()函数的基本使用

string = "hello world"
if string.islower():
    print("字符串全为小写字母")
else:
    print("字符串含有大写字母")

运行以上代码,输出结果为:字符串全为小写字母

代码示例2:使用islower()函数检查多个字符串

string1 = "this is a string"
string2 = "This is a String"
if string1.islower():
    print("string1中的所有字母都是小写字母")
else:
    print("string1中包含有大写字母")
if string2.islower():
    print("string2中的所有字母都是小写字母")
else:
    print("string2中包含有大写字母")

运行以上代码,输出结果为:string1中的所有字母都是小写字母,string2中包含有大写字母。

以上是使用islower()函数判断字符串是否全为小写字母的完整攻略,应该能够满足您对该函数的基本应用需要。