From 90f9b8420633aae38727c73cf481f79bf673a85f Mon Sep 17 00:00:00 2001 From: Vikas Kumar <24394958+dzenvikas@users.noreply.github.com> Date: Sun, 6 Aug 2017 18:37:04 +0530 Subject: [PATCH] comment added More clarification added to the code. --- SimpleStopWatch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SimpleStopWatch.py b/SimpleStopWatch.py index 465e89fa8ea..4d6791ff6eb 100644 --- a/SimpleStopWatch.py +++ b/SimpleStopWatch.py @@ -6,7 +6,7 @@ print('Press ENTER to begin, Press Ctrl + C to stop') while True: try: - input() #For ENTER + input() # For ENTER. Use raw_input() if you are running python 2.x instead of input() starttime = time.time() print('Started') except KeyboardInterrupt: