import resrc = 'aabcdddd'reobj = re.compile('ab(.*)d') src1 = reobj.sub('e', src) print src1我的意图是替换 ab和d 中间的字符, 也就是正则的字串,而不是把 ab(.*)d 都替换 查看完整描述