Как в Python 3 и Tkinter организовать горячие клавиши? Например при нажатии Ctrl+O выполнялась функция:
def openfile():
file = tkinter.filedialog.askopenfile()
if file != None:
contents = file.read()
text.insert('1.0', contents)
file.close