python怎么定义检测键盘按下的函数

1个回答
展开全部
摘要 为您查询到python实时检测键盘输入函数的示例
咨询记录 · 回答于2022-12-08
python怎么定义检测键盘按下的函数
python怎么定义检测键盘按下的函数
为您查询到python实时检测键盘输入函数的示例
import sys import tty import termios def readchar():fd=sys. stdin. fileno()old_ settings= termios. tcgetattr(fd) try: tty. setraw(sys. stdin. fileno()) ch sys. stdin. read(1) finally: termios. tcsetattr(fd, termios. TCSADRAIN,olds ettings) return ch def readkey(getcharfn=none): getchar= getchar fn or readchar c1= getchar() if ord(c1)!=0x1b: return c1 c2= getchar() if ord( c2)!= 0x5b: return c1 c3= getchar() return chr(0x10+ord(c3)-65)
已赞过
你对这个回答的评价是?
评论 收起
下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消