Would a program using a continuouse loop such as in this code take up
resources on the system if left for long period ?

import sys
>
> while 1:
>     self.data = sys.stdin.readline()
>     self.function_1(data)
>

What are my other options is I want to have a running program & other
programs communicate with it & get responses from it ?
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to