def shifou_space(args):
for a in args:
if a.isspace():
a = False
break
return a
result = shifou_space("123 3216")
print("有空",result)