Hi, I am makin this game. I want to slow down the 'for i in range(3) ' loop in ' if key==""'. How do I do this?
you can use this:
import time # insert code here time.sleep(1)
You can change the 1 to however many seconds you would like.
1
I need help slowing down a python loop
Hi,
I am makin this game. I want to slow down the 'for i in range(3) ' loop in ' if key==""'. How do I do this?
you can use this:
You can change the
1
to however many seconds you would like.