Answers for "break input loop"

0

break input loop

import sys, select

print "You have ten seconds to answer!"

i, o, e = select.select( [sys.stdin], [], [], 10 )

if (i):
  print "You said", sys.stdin.readline().strip()
else:
  print "You said nothing!"
Posted by: Guest on October-04-2021

Python Answers by Framework

Browse Popular Code Answers by Language