Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

stopwatch in python

# Install TimeV2
`pip install timev2`

from TimeV2 import time2

# Record the time it takes to wait 5 seconds

time2.stopwatch_start()

time2.wait(5)

timeRecorded = time2.stopwatch_stop()


print(timeRecorded)
 
PREVIOUS NEXT
Tagged: #stopwatch #python
ADD COMMENT
Topic
Name
7+8 =