So this is in Python and I'm trying to create a "loading screen" with repeated "..." where it outputs the "...", waits for a second, and replaces it with another "...", but maybe 1 dot at a time (haven't tried that yet). I just wanted to know if it's possible to do this and if so, how. Any help would be much appreciated. I've tried the below but it just repeats itself (which isn't surprising).
load = 0
while load != 3:
loader = "..."
print loader
sleep(1)
loader.replace("...", " ")
load = load + 1