Preguntas etiquetadas con infinite-loop

83
¿Cómo ejecutar el programa Python para siempre?

Necesito ejecutar mi programa Python para siempre en un bucle infinito. Actualmente lo estoy ejecutando así: #!/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...