It's a pretty simple problem already explained in my title, here's the code:
def flash():
import time
for i in range(1,len(says)):
label5.config(bg=says[i])
time.sleep(1)
time.sleep
, in this case, does absolutely nothing but delays my program for a couple of seconds, and then only shows the final product of the function and skips the whole process which is very important to me.