Tkinter mengeksekusi fungsi saat enter

def func(event):
    print("You hit return.")
    
root.bind('<Return>', func)
Supreme Oreo