一.re模块 1.match方法 import re # match 验证用户输入的内容 ret = re.match('\d+', 'hhoi2342ho12ioh11') print(ret) # None ret = re.match('\d+', '342khjlh324jbk234') print(ret) # <re.Match object; span=(0, 3), match='342'> # match是从开头开始匹配,不符合则返回None 2.split 切割 impor…