I am running a program in Google Colab. I am using time
module to compute the time of execution like start=time.time();....end=time.time()
.
Every time I run the code it's execution time is varying.
Is there a way I can find the average execution time
or some other function
I can use to resolve this.
I am running the same code using Linux Terminal. So It is appreciated even if I can find the average time of execution while running the python program from Linux Terminal.