我不知道为什么我会收到错误。有人可以向我解释一下发生了什么吗?我试着跟随其他一些例子,但显然我失败了:P
import BeautifulSoup as bs
def readHTML():
soup = bs("stats.html")
print(soup.prettify())
为什么我会收到类型错误?
TypeError: 'module' object is not callable
答案 0 :(得分:1)
你需要利用课程" BeautifulSoup"这是在模块内
from BeautifulSoup import BeautifulSoup as bs
def readHTML():
soup = bs("stats.html")
print(soup.prettify())