We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a89f688 commit 90f9b84Copy full SHA for 90f9b84
SimpleStopWatch.py
@@ -6,7 +6,7 @@
6
print('Press ENTER to begin, Press Ctrl + C to stop')
7
while True:
8
try:
9
- input() #For ENTER
+ input() # For ENTER. Use raw_input() if you are running python 2.x instead of input()
10
starttime = time.time()
11
print('Started')
12
except KeyboardInterrupt:
0 commit comments