【Python】TypeError: 'module' object is not callable 原因分析

来源:互联网 发布:兴安得力计价软件 编辑:程序博客网 时间:2024/05/21 04:01

**原因分析:
Python导入模块的方法有两种:import module 和 from module import,区别是前者所有导入的东西使用时需加上模块名的限定,而后者不要。**

from bs4 import BeautifulSoupmarkup = "<b><!--Hey, buddy. Want to buy a used parser?--></b>"soup = BeautifulSoup(markup)comment = soup.b.stringtype(comment)print comment
import BeautifulSoupmarkup = "<b><!--Hey, buddy. Want to buy a used parser?--></b>"soup = BeautifulSoup.BeautifulSoup(markup)comment = soup.b.stringtype(comment)print comment
0 0
原创粉丝点击