import psutil
import time
from tkinter import *
root = Tk()
Label = Label(root, text=psutil.cpu_percent()).pack()
time.sleep(1)
root.mainloop()
Here's the code. Now I want to refresh the psutil.cpu_percent() after 1 sec continuously. How can I make such a loop in it?