7
Как запустить программу Python вечно?
Мне нужно запускать мою программу 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 …