Answers for "keep output until enter is pressed python"

0

Input without pressing enter python

import tty, sys, termios

filedescriptors = termios.tcgetattr(sys.stdin)
tty.setcbreak(sys.stdin)
x = 0
while 1:
  x=sys.stdin.read(1)[0]
  print("You pressed", x)
  if x == "r":
    print("If condition is met")
termios.tcsetattr(sys.stdin, termios.TCSADRAIN,filedescriptors)
Posted by: Guest on March-01-2021
0

how to check if user pressed enter in python

# credit to the Stack Overflow user in source link

text = input("type in enter")  # or raw_input in python2
if text == "":
    print("you pressed enter")
else:
    print("you typed some text before pressing enter")
Posted by: Guest on May-27-2021

Code answers related to "keep output until enter is pressed python"

Python Answers by Framework

Browse Popular Code Answers by Language