Can this be done in python? Start by print an infinite loop and changing values in between loops.
x = 5
while ( true ):
print x
x = 3 # regain control of the interpreter and set to new value
expected output:
5
5
5
......
3
3
3
|
Can this be done in python? Start by print an infinite loop and changing values in between loops.
expected output:
| ||||
|
feedback
|
|
No, the code as you have written it will not work. The statement after the non-terminating loop will never get executed. Try the following:
Alternatively, use threading, and change the value of x in a second thread:
| |||
feedback
|
|
It's unclear what you need to do this for, but you can catch the "ctrl-c" event and enter a new value:
| ||||
|
feedback
|
|
I think that the best answer to this question is to use threading, but there is a way to inject code into a running interpreter thread: | |||
|
feedback
|
|
Not exactly. Why do you want to do this? What's the underlying issue? The "right" way to do it is probably to change the code within the while loop to occasionally actually check for your condition and then end the loop if it's time to end it (e.g., have a thread continue watching for console input) With that said, technically you could attach to your running program with a debugger (such as winpdb or the built in pdb and mess with it. But what you probably want to do, if I'm guessing right about your underlying motives, is continue to accept input despite doing some other processing simultaneously. In that case, you want to learn how to use threads in Python. Check the threading module. | |||
|
feedback
|
loop three times printing 5, then loop three times printing 3? why do you want an infinite loop? – jb. Jan 24 at 3:29