4

我想知道在python中绑定键的最简单方法

例如,默认的 python 控制台窗口出现并等待,然后在 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()需要用户按回车键,因此不是键绑定

4

3 回答 3

6

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

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

于 2013-07-23T10:46:36.983 回答
3

好吧,使用 Tkinter(python 安装中包含的一个模块)的方法在这里:

from tkinter import *

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

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

window.bind("a", test)

window.mainloop()
于 2017-01-12T18:25:38.130 回答
0

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

screen = turtle.Screen()
def blabla:
    # your code here
screen.listen()
screen.onkey(blabla, "(any key here)")
于 2018-05-30T18:20:39.337 回答