re.split('\d+',s,2) 分割符 字符 次数 分割符加括号保留分割符 re.sub(old,new,string)
re.subn()附加返回替换次数
obj=re.compile('\d+')规则编译res=obj.findall('')
re.finditer()
import configparser