码迷,mamicode.com
首页 > 其他好文 > 详细

检查元素是否有空内容

时间:2019-04-01 21:15:12      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:code   空格   for   字符串   字符   nbsp   return   元祖   ==   

 

检查字符串里是否有空格,列表、元祖里是否有空

 

 

 1 def func(x):
 2     if type(x) is str and x:         //如果type(x)是字符串且x不为空
 3         for i in x:
 4             if i ==  :
 5                 return True
 6     elif x and type(x) is list or type(x) is tuple:
 7         for i in x:
 8             if not i:        //如果i不为空
 9                 return True    
10     elif not x:
11         return True
12 
13 
14 print(func([]))

 

检查元素是否有空内容

标签:code   空格   for   字符串   字符   nbsp   return   元祖   ==   

原文地址:https://www.cnblogs.com/yifengs/p/10638934.html

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