已采纳回答 / 马里奥的马里奥
class UrlManager(object): def __init__(self): self.new_urls=set() self.old_urls=set() def add_new_url(self,url): if url is None: return if url not in self.new_urls and ur...
2017-02-22
已采纳回答 / 合理膳食与长寿
你的save_excel是方法,先在你调用的类里面, 把HtmlOutputer这个对象生成了self.outputer = html_outputer.HtmlOutputer()然后 outputer.save_excel() 注意excel加括号
2017-02-08
已采纳回答 / chaowanghn
安装beautifulsoup4$ easy_install beautifulsoup4$ pip install beautifulsoup4然后from bs4 import BeautifulSoup
2017-01-26
已采纳回答 / 慕哥0672315
.py为后缀名的文件都会被认为是python模块。package相当于文件夹,只不过其每层目录下一定有一个 _init_.py 的文件。Pycharm中,在package上右键"New-Python File"可以新建模块
2016-12-24