已采纳回答 / chaowanghn
安装beautifulsoup4$ easy_install beautifulsoup4$ pip install beautifulsoup4然后from bs4 import BeautifulSoup
2017-01-26
最赞回答 / JesseChen96
看你提问时间感觉你应该在用python3,最后输出到html页面后标题和摘要两部分如果有中文显示出来都是 b'anfdsfsfds'这样的字节串,解决办法是在outputer.html中修改两个地方:1. 打开文件时直接指定编码fout = open('output.html', 'w', encoding='utf-8')2.写如内容时取消编码
fout.write('<td>%s</td>' % data['title'])
fout.write('<td>%s...
2017-01-13