Python小白求教 怎么检测键盘上的某个键是否被按下
如题,求教 有很多种方法可以实现,我用getch库来实现,因为它特别简单使用前需在https://github.com/joeyespo/py-getch下载并安装getch
from getch import getch
while True:
key = getch()
if key.decode("utf-8") == "h":
print("Hello, World!")
break 临时号 发表于 2022-9-3 15:25
有很多种方法可以实现,我用getch库来实现,因为它特别简单
使用前需在https://github.com/joeyespo/py-getc ...
感谢大佬~
页:
[1]