Answers for "python skip input"

0

python skip input

# get the character of a key pressed (no return key needed)
# works only in the command window and with Windows OS
from msvcrt import getch

print "press a char key (escape key to exit)"

while True: …
Posted by: Guest on May-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language