import re # 判断给定的字符串是否只包含字母、数字、中划线或者下划线中的一个或多个,并且以字母或数字开头 def isNumLeters(s): s = str(s) if s == '': return False if len(s) < 2: if re.match('^[0-9a-zA-Z]+$', s[0]): return True else: return False else: if re.match('^...
Python实战练习:Python有内置函数isalpha、isdigit、isspace可以分别判断字符串是否只包含字母、数字、空格 s =input()print(s.isalpha())print(s.isdigit())print(s.isspace())