摘要: 1 import re 2 3 res = r"速度[1-8a-zA-Z]" # 1...8 a...z A...Z 4 result = re.match(res, "速度z") 5 print(result) 6 # 匹配出的数据 7 print(result.group()) 8 9 impo 阅读全文
posted @ 2018-12-05 13:56 ronle 阅读(212) 评论(0) 推荐(0) 编辑