python 监听键盘事件
Posted sea-stream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 监听键盘事件相关的知识,希望对你有一定的参考价值。
#coding=utf-8 from tkinter import * root=Tk() def callback(event): print("点击键盘",repr(event.char)) frame=Frame(root,width=200,height=200) frame.bind("<Key>",callback) frame.focus_set() frame.pack() mainloop()
效果图:
以上是关于python 监听键盘事件的主要内容,如果未能解决你的问题,请参考以下文章