альтернатива Time.sleep () в Python

root = Tk()
root.after(x, my_fuction)
# x is the time(in milliseconds) and my_function is the callback to whatever function you wanna perform after x milliseconds
root.mainloop()
Mohammed Siddiqui