0
How to run a program continuously without restarting it?
6 odpowiedzi
+ 3
add while True:
+ 2
what kind of program you are making?.
probably it is a solution that you can make a boolean variable and initiate it as true and you can use
while True: statement to continuously run it
0
Google python loops and read how they work
0
+1, and use operator "break" to stop run programm
for example:
0
Thank you guys!!
0
Use continue: your program will loop forever. But remember, whatever condition you give in the program must be True.