猿问

"房星网 昆明”原代码标签(如<p>9391元/m²</p>)爬取时,“p标签内容”没了,为什么?

from urllib import request
import re

url = 'https://www.fangstar.com/ershoufang/panlongqu'
root = '<div class="info"([\s\S]*?)</div>'
unit_price = '<p>(\d*?元/m.\\b)</p>' 
r = request.urlopen(url)
htmls = r.read()
htmls = str(htmls,encoding = 'utf-8')
root_html = re.findall(root,htmls)#root:根
ershous = []
for html in root_html:
unit_price = re.findall(unit_price,html)
ershou = {'unit_price':unit_price}
ershous.append(ershou)
print(ershous)


慕莱坞5287464
浏览 1273回答 1
1回答

慕函数9285021

动态生成的标签 ?
随时随地看视频慕课网APP

相关分类

Python
我要回答