Reg20190321

图片发自App
#coding=utf-8
#写一个正则表达式,使其能同时识别下面所有的字符串:'bat', 'bit', 'but', 'hat', 'hit', 'hut‘

import re
s = "'bat','bit','but','hat','hit','hut'"
content = re.findall(r"..t",s)
print(content)

你可能感兴趣的:(Reg20190321)