from urllib.request import urlopenfrom bs4 import BeautifulSouphtml=urlopen("http://www.imooc.com/")object1=BeautifulSoup(html.read())print(object1.h1)运行后结果什么都没有是怎么回事?等待大神指点!!
1 回答
奇风
TA贡献6条经验 获得超0个赞
data = urlopen(url) data为bytes类型,需要decode()解码,转换成str类型
推荐使用requests包,Requests 会自动解码来自服务器的内容。大多数 unicode 字符集都能被无缝地解码。
添加回答
举报
0/150
提交
取消