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

python之函数用法islower()

时间:2015-11-07 23:12:51      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:

# -*- coding: utf-8 -*-
#python 27
#xiaodeng
#python之函数用法islower()
#http://www.runoob.com/python/att-string-islower.html


#islower()
#说明:检测字符串是否都由小写字母组成
str = "THIS is string example....wow!!!"
print str.islower()#False

str = "this is string example....wow!!!"
print str.islower()#True

 

python之函数用法islower()

标签:

原文地址:http://www.cnblogs.com/dengyg200891/p/4946262.html

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