Contact: aviboots(AT)netvision.net.il
41,219 questions
53,721 answers
573 users
import sys text = "" while 1: ch = sys.stdin.read(1) text = text + ch if ch == '\n': break print("User Input: %s" % text) ''' run: python programming is fun User Input: python programming is fun '''