Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python time execution

#Python time execution
import time
start_time = time.time()
print("Hello") 	# Hello
end_time = time.time()
total_time = end_time - start_time
print("Time: ", total_time)
 
PREVIOUS NEXT
Tagged: #python #time #execution
ADD COMMENT
Topic
Name
6+5 =