Python/ref string islower

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python字符串islower()方法

❮字符串方法

检查文本中所有字符是否都小写:

    txt = "hello 
    world!"

x = txt.islower()


print(x)

定义和用法

The islower() 如果所有字符均小写,则方法返回True,否则返回False。

不检查数字,符号和空格,仅检查字母字符。

句法

string.islower()
  

参数值

没有参数。

更多例子

检查文本中所有字符是否都小写:

    a = "Hello world!"
b = "hello 123"
c = "mynameisPeter"


print(a.islower())
print(b.islower())
print(c.islower())

❮字符串方法