I have a question:
When binding a function in tkinter, there are many ways to do it. Two of the ways are:
# Method 1
root.bind('<Control-n>', ExampleFunction)
# Method 2
root.bind('<Control-Key-n>', ExampleFunction)
What would be the difference between Control-n and Control-Key-n?