This is an easy way to fix the problem: `
import time x = 0 for i in range(100): print(f'{x}% loaded', end= "\r", flush = True) x += 1 time.sleep(0.5)
`