当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python String islower()用法及代码示例


如果字符串中的所有字符都是小写,则 Python 字符串 islower() 方法返回 True。如果不是小写,则返回 False。

签名

islower()

参数

不需要参数。

返回

它返回True或False。

让我们看一些 islower() 方法的例子来理解它的函数。

Python 字符串 islower() 方法示例 1

一个简单的例子来理解如何应用这个方法。它返回 true,请参见下面的示例。

# Python islower() method example
# Variable declaration
str = "javatpoint"
# Calling function
str2 = str.islower()
# Displaying result
print(str2)

输出:

True

Python 字符串 islower() 方法示例 2

如果在小写以外的其他情况下找到任何单个字符,则返回 False。请参阅下面的示例。

# Python islower() method example
# Variable declaration
str = "Welcome To JavaTpoint"
# Calling function
str2 = str.islower()
# Displaying result
print(str2)

输出:

False

Python 字符串 islower() 方法示例 3

字符串也可以有数字,这种方法适用于字母大小写并忽略数字。所以它返回 True,见下面的例子。

# Python islower() method example
# Variable declaration
str = "hi, my contact is 9856******"
# Calling function
str2 = str.islower()
# Displaying result
print(str2)

输出:

True






相关用法


注:本文由纯净天空筛选整理自 Python String islower() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。