I would like to get the time spent on the cell execution in addition to the original output from cell.
To this end, I tried %%timeit -r1 -n1 but it does
%%timeit -r1 -n1
import time start = time.time() "the code you want to test stays here" end = time.time() print(end - start)