Python键绑定/捕获

时间:2013-07-23 10:33:42

标签: python python-2.7 python-3.x keyboard

我想知道在python

中绑定键的最简单方法

例如,默认的python控制台窗口apears并等待,然后在psuedo - >

if key "Y" is pressed:
   print ("Yes")
if key "N" is pressed:
   print ("No")

我想实现这个没有使用python不包含的任何模块。只是纯粹的蟒蛇

非常感谢任何和所有帮助

python 2.7或3.x Windows 7

注意: raw_input()要求用户按Enter键,因此不是键绑定

3 个答案:

答案 0 :(得分:4)

来自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

这很棒,因为它不需要任何第三方模块。

答案 1 :(得分:1)

嗯,使用Tkinter这个包含在python安装中的模块的方法是:

from tkinter import *

window = Tk()
window.geometry("600x400")
window.title("Test")

def test(event):
    print("Hi")

window.bind("a", test)

window.mainloop()

答案 2 :(得分:0)

如果你有一个屏幕,你可能会喜欢这个:

screen = turtle.Screen()
def blabla:
    # your code here
screen.listen()
screen.onkey(blabla, "(any key here)")