Contact: aviboots(AT)netvision.net.il
39,884 questions
51,810 answers
573 users
import time start = time.time() print("time used to execute this print: ") end = time.time() print(end - start) ''' run: time used to execute this print: 7.152557373046875e-06 '''
import time start = time.perf_counter() print("time used to execute this print: ") end = time.perf_counter() print(end - start) ''' run: time used to execute this print: 7.610302418470383e-06 '''
import time start = time.process_time() print("time used to execute this print: ") end = time.process_time() print(end - start) ''' run: time used to execute this print: 1.0453000000000545e-05 '''