Temps dans Jupyter Notebook
%%time
# to get a cell executation time
# put %%time at the very start of the cell
Inexpensive Ibis
%%time
# to get a cell executation time
# put %%time at the very start of the cell
# line mode:
%timeit statement
# cell mode:
%%timeit
statements
...