echo.py 121 Bytes Raw Blame History Permalink 1 2 3 4 5 while(1) : echo_text = input("Please enter text : ") if(echo_text == "exit"): break print(echo_text)