How to slow down a loop in Python
- Last modified: 20 April 2020
- Category: python tutorial
in this post, we'll explore how to make a loop slow down or sleep in python
for that, we'll use the time module
syntax
time.sleep(second)
example
for i in range(100):
print("Go")
print("wait for 5 seconds")
time.sleep(5)
the code above it'll wait 5 seconds for single loop
English today is not an art to be mastered it's just a tool to use to get a result