Raspberry Pi - Display and Output
Given this code snippet, what will be the output on the label after 3 seconds?
import tkinter as tk
import time
def update_label():
value = int(time.time()) % 100
label.config(text=str(value))
root.after(1000, update_label)
root = tk.Tk()
label = tk.Label(root, text="0")
label.pack()
update_label()
root.mainloop()