RosettaCodeData/Task/Keyboard-input-Flush-the-keyboard-buffer/Python/keyboard-input-flush-the-keyboard-buffer.py

9 lines
213 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
def flush_input():
try:
import msvcrt
while msvcrt.kbhit():
msvcrt.getch()
except ImportError:
import sys, termios
termios.tcflush(sys.stdin, termios.TCIOFLUSH)