为了账号安全,请及时绑定邮箱和手机立即绑定

def add_new_urls(self,urls): if urls in None or len(urls)==0 : return if url in urls: self.add_new_url(url)

   def add_new_urls(self,urls):
        if urls in None or len(urls)==0 :
            return
        if url in urls:------error
            self.add_new_url(url)-----error

后面两行报错 是什么情况

正在回答

1 回答

   def add_new_urls(self,urls):
        if urls is None or len(urls)==0 :
            return 
        for url in urls:
            self.add_new_url(url)



0 回复 有任何疑惑可以回复我~
#1

Freen247 提问者

对啊代码和这个是一样的 最后两行又error 不知道为啥 我是python 2.7
2017-07-07 回复 有任何疑惑可以回复我~
#2

成蔚

回复 Freen24下面是循环将urls列表中每一个元素进行add_new_url()处理 for不是if
2017-09-15 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Python开发简单爬虫
  • 参与学习       227670    人
  • 解答问题       1219    个

本教程带您解开python爬虫这门神奇技术的面纱

进入课程

def add_new_urls(self,urls): if urls in None or len(urls)==0 : return if url in urls: self.add_new_url(url)

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信