1
Having the following code as the basis:
for x in range(100):
print("{}%".format (x))
How could it be done so that in place of each value appears in a different row and yes replaced in the same row.
Example instead of having in the terminal:
1
2
3
4
5
First have the 1 after it "fade" and show the 2 and so on until you get to the 5?
I know you can do it using C.