4

Pythonでキーをバインドする最も簡単な方法を知りたい

たとえば、デフォルトの python コンソール ウィンドウが開き、待機してから、疑似 ->

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 キーを押す必要があるため、キーバインディングではありません

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

サードパーティのモジュールを必要としないため、これは素晴らしいことです。

于 2013-07-23T10:46:36.983 に答える