Python programs that read one character from the user

Asked 1 years ago, Updated 1 years ago, 121 views

Is there a way to receive only one character as a user's input value? For example, if a user presses only one key on the terminal (for example, getch()), it is returned immediately. I know there are related functions in Windows environments, but I want to know how to do it on all platforms.

input python

2022-09-22 13:45

1 Answers

This site shows how to read only one character on Windows, Linux, and OS X: http://code.activestate.com/recipes/134892/

class _Getch:
    """Gets a single character from standard input.  Does not echo to the
screen."""
    def __init__(self):
        try:
            self.impl = _GetchWindows()
        except ImportError:
            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


class _GetchWindows:
    def __init__(self):
        import msvcrt

    def __call__(self):
        import msvcrt
        return msvcrt.getch()


getch = _Getch()


2022-09-22 13:45

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.