标签: web web-scraping spyder
没有这样的文件或目录:'hackathon.html' 这是在 spyder 上运行代码时出错
50.6.
from bs4 import BeautifulSoup with open('hackathon.html','r') as html_file: content=html_file.read() print(content) 已保存在我的桌面上
from bs4 import BeautifulSoup with open('hackathon.html','r') as html_file: content=html_file.read() print(content)
答案 0 :(得分:0)
将文件放在您正在运行脚本的目录中或提供 open() 完整路径信息。
open()