爬虫代码出现Process finished with exit code 0
时间: 2023-12-08 20:38:11 浏览: 89
一个爬虫代码
5星 · 资源好评率100%
当爬虫代码出现Process finished with exit code 0时,通常是因为程序运行完毕后自动退出导致的。这可能是因为代码中没有让程序保持运行状态的语句,例如input()或者time.sleep()等。你可以在代码的最后加上这样的语句来保持程序的运行状态,例如:
```python
import time
if __name__ == "__main__":
# 爬虫代码
time.sleep(3600) # 程序将会保持运行状态1小时
```
阅读全文