意外的缩进挫折

时间:2014-05-20 10:55:38

标签: python indentation

我搜索了#34;意外的缩进"错误是非常自我解释的但是对于我的生活我无法谈判它,我已经尝试了一天左右而无处可去!

代码:

    def scrape(url):
    N=10
    for i in range(N+1):
        try:
            return scraperwiki.scrape(url, user_agent="Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:16.0.1) Gecko/20121011 Firefox/16.0.1")
        except: Exception, e
            print "Failed to fetch", url, e
            print "Retry", i
            if i==N:
                raise

错误在行开头

        print "Failed to fetch", url, e

有人可以对此有所了解吗?我无法看到它。

1 个答案:

答案 0 :(得分:3)

您的例外应该在:

之前
except Exception, e:

此外,您应该按the changes

执行此操作
except Exception as e: