Answers for "python check function run time"

10

python time code

import time

t0 = time.time()
code_block
t1 = time.time()

total = t1-t0
Posted by: Guest on May-13-2020
5

python how to measure code run in time

import time
start_time = time.time()
main()
print("--- %s seconds ---" % (time.time() - start_time))
Posted by: Guest on May-09-2020
0

function running time python

import time
ps = 1000000

print("%12s%16s" % ("Problem Size", "seconds"))
for count in range(5):
  start = time.time()
  work = 1
  for x in range(ps):
    work +=1
    work -=1

  elapsed = time.time() - start
  print("%12d%16.3f" % (ps, elapsed))
  ps *= 2
Posted by: Guest on October-20-2021

Code answers related to "python check function run time"

Python Answers by Framework

Browse Popular Code Answers by Language