import re #导入
from turtledemo.penrose import start
pattern=r'\d\.\d+' #限定符,\d 0-9数字出现1次或多次
s='I study python 3.11 every day' #待匹配字符串
match=re.match(pattern,s,re.I)
print(match)
s2='3.11 python I study every day'
match2=re.match(pattern,s2,re.I)
print(match2)
print('匹配值的起始位置',match2.start())
print('匹配值的结束位置',match2.end())
print('匹配区间的位置元素',match2.span())
print('待匹配的字符串',match2.string)
print('匹配的数据',match2.group())
(仅供参考)
Comments NOTHING