当我尝试使用漂亮的汤打印标签时显示IdentionError


from bs4 import BeautifulSoup
with open('Home.html','r')as html_file:
content=html_file.read()
print(content)
soup = BeautifulSoup(content,'lxml')
tags = soup.find('h5') #error showing here
print(tags)#and here

有人能告诉我为什么在这里显示识别错误吗。请告诉我我必须安装哪个软件包,或者我必须做什么样的事情来运行这个软件包。

您意外地将with语句的前4行缩进了1个空格
这里有一个修复:

from bs4 import BeautifulSoup
with open('Home.html','r')as html_file:
content=html_file.read()
print(content)
soup = BeautifulSoup(content,'lxml')
tags = soup.find('h5') 
print(tags)

相关内容

  • 没有找到相关文章

最新更新