Remove and Replace Printed items
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.. … Read more