for i in range(21):
sys.stdout.write('\r')
sys.stdout.write("[%-20s] %a%%" % ('='*i, 5*i))
time.sleep(0.25)
I need help understanding line 3. I would appreciate help. I know what this code does, but I don't know how. For example, I don't understand what the % does.