码迷,mamicode.com
首页 > 其他好文 > 详细

Jupyter

时间:2018-02-18 12:55:39      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:mkdir   notebook   htm   nec   nali   config   col   ruby   class   

1 ) 魔法命令

1.1 ) 执行外部文件

%run add.py

3

add(2, 3)

5

1.2 ) 运行计时

%time print("hello word")
hello word
CPU times: user 68 μs, sys: 20 μs, total: 88 μs
Wall time: 93.9 μs
%timeit print("hello word")

1.3 ) 查看当前会话中的所有变量与函数

%who

Interactive namespace is empty.

%whos

Interactive namespace is empty.

%who-ls

No variables match your requested type.

1.4 ) 运行终端命令

!ls
add.py     test.ipynb

1.5 ) 查看魔法指令

lsmagic
Available line magics:
%alias  %alias_magic  %autocall  %automagic 
%autosave  %bookmark  %cat  %cd  %clear  %colors  %config  %connect_info  %cp  %debug  %dhist  %dirs  %doctest_mode  %ed  %edit  %env  %gui  %hist  %history  %killbgscripts  %ldir  %less  %lf  %lk  %ll  %load  %load_ext  %loadpy  %logoff  %logon  %logstart  %logstate  %logstop  %ls  %lsmagic  %lx  %macro  %magic  %man  %matplotlib  %mkdir  %more  %mv  %notebook  %page  %pastebin  %pdb  %pdef  %pdoc  %pfile  %pinfo  %pinfo2  %popd  %pprint  %precision  %profile  %prun  %psearch  %psource  %pushd  %pwd  %pycat  %pylab  %qtconsole  %quickref  %recall  %rehashx  %reload_ext  %rep  %rerun  %reset  %reset_selective  %rm  %rmdir  %run  %save  %sc  %set_env  %store  %sx  %system  %tb  %time  %timeit  %unalias  %unload_ext  %who  %who_ls  %whos  %xdel  %xmode
Available cell magics:
%%!  %%HTML  %%SVG  %%bash  %%capture  %%debug  %%file  %%html  %%javascript  %%js  %%latex  %%markdown  %%perl  %%prun  %%pypy  %%python  %%python2  %%python3  %%ruby  %%script  %%sh  %%svg  %%sx  %%system  %%time  %%timeit  %%writefile
Automagic is ON, % prefix IS NOT needed for line magics.

Jupyter

标签:mkdir   notebook   htm   nec   nali   config   col   ruby   class   

原文地址:https://www.cnblogs.com/yuzhen233/p/8452691.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!