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)
已赞过
评论
收起
你对这个回答的评价是?