Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用 Python 编写了一个代码来无限循环地打开一个网站,我也把它变成了 Pythonw(没有控制台)。我想在不关闭计算机电源的情况下停止它,有什么办法吗?
从您的脚本中,您可以使用 sys 模块,例如使用
sys.exit()
命令。如果您需要重试打开 URL,您还可以通过在 try 块中添加增加的睡眠步骤来使用指数回退。