最佳答案
我需要永远在无限循环中运行 Python 程序。
目前我正在这样运行它-
#!/usr/bin/python
import time
# some python code that I want
# to keep on running
# Is this the right way to run the python program forever?
# And do I even need this time.sleep call?
while True:
time.sleep(5)
有没有更好的办法? 或者我甚至需要 time.sleep
电话?
有什么想法吗?