0
Is there a jump statement?
I want to repeat a code or jump to line 1? Can you help me. I dont want to end the code after input/output. It should start from beginning :)))
4 Answers
0
A (for) loop for the complete script?!
0
Ofc just put the complete script inside the loop. It only requires some minor editing
0
you need to use
while True:
your code with
conditional break to exit of you want
0
Ok cool thanks :)