Ubuntu下Jupyter Notebook的安装与使用(2)

常用的魔术命令有:

%quickref   显示 IPython 快速参考  
%magic   显示所有魔术命令的详细文档  
%debug   从最新的异常跟踪的底部进入交互式调试器  
%pdb   在异常发生后自动进入调试器  
%reset   删除 interactive 命名空间中的全部变量  
%run script.py   执行 script.py  
%prun statement   通过 cProfile 执行对 statement 的逐行性能分析  
%time statement   测试 statement 的执行时间  
%timeit statement   多次测试 statement 的执行时间并计算平均值  
%who、%who_ls、%whos   显示 interactive 命名空间中定义的变量,信息级别/冗余度可变  
%xdel variable   删除 variable,并尝试清除其在 IPython 中的对象上的一切引用  
!cmd   在系统 shell 执行 cmd  
output=!cmd args   执行cmd 并赋值  
%bookmark   使用 IPython 的目录书签系统  
%cd direcrory   切换工作目录  
%pwd   返回当前工作目录(字符串形式)  
%env   返回当前系统变量(以字典形式)  

更多详情见请继续阅读下一页的精彩内容

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/e294476e1c17b85da3e75d97ab34dc7c.html