how to make a stopwatch in pythoon

Solutions on MaxInterview for how to make a stopwatch in pythoon by the best coders in the world

showing results for - "how to make a stopwatch in pythoon"
Clara
02 Sep 2018
1
2
3import time
4
5now = time.time()
6future = now + 10
7while time.time() < future:
8    # do stuff
9    pass