diff --git a/SimpleStopWatch.py b/SimpleStopWatch.py index 4d6791ff6eb..0732829bf30 100644 --- a/SimpleStopWatch.py +++ b/SimpleStopWatch.py @@ -3,10 +3,9 @@ import time -print('Press ENTER to begin, Press Ctrl + C to stop') while True: try: - input() # For ENTER. Use raw_input() if you are running python 2.x instead of input() + input("Press ENTER to begin, Press Ctrl + C to stop") # For ENTER. Use raw_input() if you are running python 2.x instead of input() starttime = time.time() print('Started') except KeyboardInterrupt: