I'm trying to make a simple 3 dot loading 'animation', what am I doing wrong? Basically I want to print "." (wait) print "." (wait) print "." but all on the same line
import time
username = input("Username: ")
password = input("Password: ")
time.sleep(1)
print(".")
time.sleep(0.8)
print(".")
time.sleep(0.5)
print(".")
time.sleep(0.3)
print("\nHello, " + username)