Python考察正则表达式和字典 匹配pattern为 ^[AWSD][0-9]{1,2}$ 后利用字典类简化位移 代码如下 import re while True: try: filter_out=[re.match(r'^[AWDS][0-9]{1,2}$',i) for i in input().split(';')] &nb...