I am trying to measure time it took to perform my function using time.time() module.
start=time.time()
print(funcV1(sample,result))
finish=time.time()
When I calculate time-difference, it shows me e-05 at the end. What does it mean ?
>>> start
1579830996.868476
>>> finish
1579830996.8685372
>>> finish-start
6.127357482910156e-05