标签: python tkinter bind parentheses
我有一个程序,只要用户输入括号,就需要处理。我试过了:
root.bind("<Shift-KP_9>")
但它没有用,与
root.bind("<Shift-9>")
如何将括号事件绑定到Tkinter?请帮帮我
答案 0 :(得分:1)
无需过度思考。 root.bind("<(>")可以正常使用。
root.bind("<(>")