我搜索了#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
有人可以对此有所了解吗?我无法看到它。
答案 0 :(得分:3)