Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

find the time of our execution in vscode

import time
start_time = time.time()

do something # here your actual code/routine

print("Process finished --- %s seconds ---" % (time.time() - start_time))
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #find #time #execution #vscode
ADD COMMENT
Topic
Name
5+8 =