15-1.识别下列字符串 :“bat ”.“bit ”.“but ”.“hat ”.“hit” 或 “hut ” import re from random import choice strtuple = ('bat', 'bit', 'but', 'hat', 'hit', 'hut') patt = '[bh][aiu]t' m = re.search(patt, choice(strtuple)) print(m.group()) 15-2.匹配用一个空格分隔的任意一对单词 ,比如名和姓…