1 import re 2 str_test=’abcdefgHABC123456中华民族’ 3 4 #把正则表达式编译成对象,如果常常使用该对象,此种形式可提高肯定效率 5 num_regex = re.compile(r'[0-9]’) 6 zimu_regex = re.compile(r'[a-zA-z]’) 7 hanzi_regex = re.compile(r'[\u4E00-\u9FA5]’) 8 9 print(‘输出字符串:’,str_test)10 #findall获取字符串…