Apr-22-2018, 11:38 PM
Hello, is there a way to slow down an entire loop. I don't want:
because that's only pausing it for one second. I want the entire script slowed down as shown in this animation I made: https://imgur.com/a/OpdoJKV (The bottom animation is the one that I DO want)
I'm not sure if this is possible but if so, please tell me how to do it. I'm guessing by using the sys module if anything.
1 2 3 4 5 |
while True : code code code time.sleep( 1 ) |
I'm not sure if this is possible but if so, please tell me how to do it. I'm guessing by using the sys module if anything.