if not len(base_url): print "No page to reptile!" sys.exit(1)
时间: 2024-06-07 13:09:27 浏览: 91
[优]3 利用Python编写简单网络爬虫实例3.pdf
这段代码是在Python 2.x中使用的,用于检查base_url是否为空,如果为空则打印"No page to reptile!"并退出程序。在Python 3.x中,应该将print语句改为print函数的调用方式,即print("No page to reptile!")。另外,sys.exit(1)可以替换为raise SystemExit(1)。
阅读全文