I just wrote some code for a loading symbol that displays
Loading
Loading.
Loading..
Loading...
and then repeats this five times. My only problem is after it executes that loop once, it won't repeat. Here's my code:
import time
for x in range(5):
for y in range(4):
print("Loading"+"."*y,end='\r')
time.sleep(1)