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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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