码迷,mamicode.com
首页 > 编程语言 > 详细

Python3 islower()方法

时间:2018-07-03 14:57:49      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:字符   str   否则   python   usr   python3   检测   isl   slow   

描述

islower() 方法检测字符串是否由小写字母组成。

语法

islower()方法语法:

str.islower()

参数

  • 无。

返回值

如果字符串中包含至少一个区分大小写的字符,并且所有这些(区分大小写的)字符都是小写,则返回 True,否则返回 False

实例

以下实例展示了islower()方法的实例:

#!/usr/bin/python3

str = "RUNOOB example....wow!!!"
print (str.islower())

str = "runoob example....wow!!!"
print (str.islower())

以上实例输出结果如下:

False
True

  

Python3 islower()方法

标签:字符   str   否则   python   usr   python3   检测   isl   slow   

原文地址:https://www.cnblogs.com/dillon-china/p/9257754.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!