Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

calculer un temps en python

import time
begin = time.process_time_ns()
your_program()				# The program you want to test
end = time.process_time_ns()
final_time = end - begin	# Final time in nanoseconds
 
PREVIOUS NEXT
Tagged: #calculer #temps #en #python
ADD COMMENT
Topic
Name
6+9 =