I was wondering if it was possible to remove items you have printed in Python - not from the Python GUI, but from the command prompt. e.g.
a = 0
for x in range (0,3):
a = a + 1
b = ("Loading" + "." * a)
print (a)
so it prints
>>>Loading
>>>Loading.
>>>Loading..
>>>Loading...
But, my problem is I want this all on one line, and for it it remove it self when something else comes along. So instead of printing "Loading", "Loading.", "Loading... I want it to print "Loading.", then it removes what is on the line and replaces it with "Loading.." and then removes "Loading.." and replaces it (on the same line) with "Loading...". It's kind of hard to describe.
p.s I have tried to use the Backspace character but it doesn't seem to work ("\b")
Thanks
avariable here? You can just use x as your variable and it will do the same thing! - John Howardprint()command indentet to the level of the inner of the for-loop? Currently, your code doesn't print some kind of progress, but only the final state. 2. shouldn't it beprint (b)? Currently only integers are printed, not the"Loading"as mentioned in the question. - Qaswed