How do I make:
c=5
for i in range(10):
print(c)
c+=1
so that instead of printing across several lines like:
5
6
7
8
9
10
11
12
13
14
In each loop it will go:
5
Then when it loops again it will overwrite the existing line with:
6
How do I go about that?