Python Windows `msvcrt.getch()` only detects every 3rd keypress?

前端 未结 2 1635
不知归路
不知归路 2020-12-10 08:41

My code is below:

import msvcrt
while True:
    if msvcrt.getch() == \'q\':    
       print \"Q was pressed\"
    elif msvcrt.getch() == \'x\':    
                


        
2条回答
  •  盖世英雄少女心
    2020-12-10 09:00

    You can optimize things a little bit by also using themsvcrt.kbhit function which will allow you callmsvcrt.getch()only as much as is necessary:

    while True:
        if msvcrt.kbhit():
            ch = msvcrt.getch()
            if ch in '\x00\xe0':  # arrow or function key prefix?
                ch = msvcrt.getch()  # second call returns the scan code
            if ch == 'q':
               print "Q was pressed"
            elif ch == 'x':
               sys.exit()
            else:
               print "Key Pressed:", ch
    

    Note that theKey Pressedvalue printed won't make sense for things like function keys. That's because it those cases it's really the Windows scan code for the key, not a regular key code for the character.

提交回复
热议问题