摘要:
1 #!/usr/bin/env python 2 def has_space(args) : 3 ret = True 4 for c in args : 5 if c.isspace() : 6 ret = False 7 break 8 return ret 9 ret = has_s... 阅读全文
摘要:
1 #!/usr/bin/env python 2 def obj_len(arg) : 3 if isinstance(arg,str) or isinstance(arg,list) or isinstance(arg, tuple) : 4 if len(arg) >5 : 5 return True 6 else... 阅读全文