You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sage-support
In the notebook, suppose I want to do
2+2;2*2
so that they evaluate and display nicely after each other. Then
suppose I want to time them:
%time
2+2;2*2
But then I only get the total timing for the cell, not each part
individually. Is there any way to do that (other than explicitly
calling the timeit module for each one, which is totally not worth it
for my purposes)?