calculer un temps en python

Solutions on MaxInterview for calculer un temps en python by the best coders in the world

showing results for - "calculer un temps en python"
Paul
31 Jul 2017
1import time
2begin = time.process_time_ns()
3your_program()				# The program you want to test
4end = time.process_time_ns()
5final_time = end - begin	# Final time in nanoseconds