python re 字符串匹配问题

#coding=utf-8

import requests
import re

html = requests.get('http://tieba.baidu.com/f?ie=utf-8&kw=python&fr=search')

html = requests.get('http://jp.tingroom.com/yuedu/yd300p/')

html.encoding = 'utf-8'

print html.text

lastreponder = re.findall('最后回复人:(.*?)">',html.text,re.S)
for each in lastreponder:
print each

代码如上
网页部分源代码如下:title="最后回复人:黄哥python培训">
即:
'最后回复人:(.*?)">'与"最后回复人:黄哥python培训">匹配不起来,
试过加\在"前,也是不行,求助下,谢谢!

http://zhidao.baidu.com/question/1046896060237813819.html

把?去掉,?用在*后面是非贪心匹配。(.*?)整个意思是什么也不匹配