Contact: aviboots(AT)netvision.net.il
40,764 questions
53,140 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 '''