最赞回答 / 人在梦游中
resp2 = response2.read() ((resp2)) (resp2.decode())同样处理第一种和第三种就可以了。如果不加decode的话,出来的是b'<!DOCTYPE html>\n<!--STATUS OK-->\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n...这样的
2018-05-07
You're probably treating a list of items like a single item. Did you call find_all() when you meant to call find()?
2018-04-29
Python3
html页面出现乱码,解决方法:
1)打开文件时加上编码:
fout = open('output.html', 'w', encoding='utf-8')
2)视频中在写入标题和内容时加入了编码转换,去掉,不要加,直接这样写:
fout.write("<td>%s</td>" % data['title'])
html页面出现乱码,解决方法:
1)打开文件时加上编码:
fout = open('output.html', 'w', encoding='utf-8')
2)视频中在写入标题和内容时加入了编码转换,去掉,不要加,直接这样写:
fout.write("<td>%s</td>" % data['title'])
2018-04-28