标签: python python-3.x performance jupyter-notebook ipython-magic
我使用%%time魔术命令来计算执行时间。 因此,documentation必须返回CPU时间和Wall时间。 但我只有沃尔时间:
%%time
%%time for i in range(0,1000): 13.3**4/234 + i**45 Wall time: 2 ms
我在Anaconda上使用Windows 7专业的Jupyter笔记本电脑。
所以我有2个问题: