Jupyter Notebook魔法命令
%run
用来运行指定路径的python文件
%run xxxx/xxx/xxx.py
并且会将改文件定义的函数和变量引入到jupyter notebook中,后续可以使用
引入python包
import xxxx.xxxx
from xxxx import xxxx
%timeit 性能测试
系统根据代码性能自动执行多次,并给出最快的3次结果
%timeit L = [i ** 2 for i in range(10000)]
%后面只能跟一行代码,如果要测试多行代码使用%%
%%timeit
L = []
for i in range(1000):
L.append(i ** 2)
%time 性能测试,执行一次
%time L = [i ** 2 for i in range(10000)]
其他魔法命令
%lsmagic
查看命令文档
%run?