import tkinter as tk
import time as tm
root = tk.Tk()
label_information = tk.Label(text='test1', width=10, height=2, bg='pink')
label_information2 = tk.Label(text='test2', width=10, height=2, bg='pink')
label_information3 = tk.Label(text='40', width=10, height=2, bg='pink')
def start():
flag =1
while flag ==1:
for q in range(5):
root.update()
tm.sleep(0.5)
q += 1
if q % 2 == 0:
label_information.place(x=50, y=70)
if q % 3 == 0:
label_information2.place(x=50, y=70)
if q == 5:
flag=0
start()
root.mainloop()