我想知道在python中绑定键的最简单方法
例如,默认的python控制台窗口会先提示并等待,然后在psuedo->
if key "Y" is pressed:
print ("Yes")
if key "N" is pressed:
print ("No")
我想在不使用python不包含的任何模块的情况下实现这一目标.只是纯Python
任何帮助都将不胜感激
python 2.7或3.x Windows 7
注意:raw_input()要求用户按Enter键,因此不进行键盘绑定
解决方法:
从http://code.activestate.com/recipes/134892/开始(尽管有些简化):
class _Getch:
"""Gets a single character from standard input. Does not echo to the
screen."""
def __init__(self):
self.impl = _GetchUnix()
def __call__(self):
return self.impl()
class _GetchUnix:
def __init__(self):
import tty, sys
def __call__(self):
import sys, tty, termios
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, old_settings)
return ch
getch = _Getch()
然后,您可以执行以下操作:
>>> getch()
'Y' # Here I typed Y
这很棒,因为它不需要任何第三方模块.