how to delete print statement from console pythonn

Solutions on MaxInterview for how to delete print statement from console pythonn by the best coders in the world

showing results for - "how to delete print statement from console pythonn"
Amy
24 Jan 2019
1import time
2for x in range (0,5):  
3    b = "Loading" + "." * x
4    print (b, end="\r")
5    time.sleep(1)
6
similar questions