python正则匹配*号

在正则匹配*中运到的坑,需要加入.

#小案例
import re
name='规格45*45'
print(re.findall('45.*45',name))