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

Python(67)_写函数,判断用户传入的对象(str,列表,元组)的每一个元素是否有为空,并返回

时间:2019-01-12 00:13:06      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:返回   odi   utf-8   class   bsp   http   coding   for   一个   

#-*-coding:utf-8-*-
‘‘‘
写函数,判断用户传入的对象(str,列表,元组)的每一个元素是否有为空,并返回
‘‘‘
def func(x):
    ‘‘‘str‘‘‘
    if type(x) is str and x:
        for i in x:
          if i ==  :
              return True
    elif x and type(x) is list or type(x) is tuple:
        for i in  x:
            if not i:
                return True
print(func([1,‘‘,9]))
print(func([]))

技术分享图片

 

Python(67)_写函数,判断用户传入的对象(str,列表,元组)的每一个元素是否有为空,并返回

标签:返回   odi   utf-8   class   bsp   http   coding   for   一个   

原文地址:https://www.cnblogs.com/sunnybowen/p/10258200.html

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