echo.py 115 Bytes Raw Blame History Permalink 1 2 3 4 5 6 while(True): i = input("If you enter 'exit', the program will exit:") if(i == "exit"): break else: print(i)