Open arshbot opened 5 years ago
How can I quit from inside a while loop? Below is an example of a script I've had trouble getting out of.
from ptpdb import set_trace while True: set_trace() print('doing something')
How can I quit from inside a while loop? Below is an example of a script I've had trouble getting out of.