HOME/Articles/

python code execution time (snippet)

Article Outline

Python example 'python code execution time'

Modules used in program:

  • import time

python code execution time

Python code example: python code execution time

#Calculate time taken to execute a piece of code

import time
start_time = time.time()
a,b = 5,10
c = a+b
end_time = time.time()
time_taken = (end_time- start_time)*(10**6)
print("Time taken in micro_seconds:", time_taken)

More Python: https://pythonprogramminglanguage.com