9 lines
213 B
Python
9 lines
213 B
Python
|
|
def flush_input():
|
||
|
|
try:
|
||
|
|
import msvcrt
|
||
|
|
while msvcrt.kbhit():
|
||
|
|
msvcrt.getch()
|
||
|
|
except ImportError:
|
||
|
|
import sys, termios
|
||
|
|
termios.tcflush(sys.stdin, termios.TCIOFLUSH)
|