国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Ipython 解釋器

dreambei / 3493人閱讀

摘要:進(jìn)入通常我們并不使用自帶的解釋器,而是使用另一個(gè)比較方便的解釋器解釋器,命令行下輸入即可進(jìn)入解釋器。查看所有的命令以一個(gè)百分號(hào)開頭,作用與一行以兩個(gè)百分號(hào)開頭,作用于整個(gè)。使用使用上個(gè)的輸出結(jié)果可以使用來執(zhí)行一些系統(tǒng)命令。

進(jìn)入ipython

通常我們并不使用Python自帶的解釋器,而是使用另一個(gè)比較方便的解釋器——ipython解釋器,命令行下輸入:

ipython

即可進(jìn)入ipython解釋器。

所有在python解釋器下可以運(yùn)行的代碼都可以在ipython解釋器下運(yùn)行:

print "hello, world"
hello, world

可以進(jìn)行簡單賦值操作:

a = 1

直接在解釋器中輸入變量名,會(huì)顯示變量的值(不需要加print):

a
1



b = [1, 2, 3]
ipython magic命令

ipython解釋器提供了很多以百分號(hào)%開頭的magic命令,這些命令很像linux系統(tǒng)下的命令行命令(事實(shí)上有些是一樣的)。

查看所有的magic命令:

%lsmagic
Available line magics:
%alias  %alias_magic  %autocall  %automagic  %autosave  %bookmark  %cd  %clear  %cls  %colors  %config  %connect_info  %copy  %ddir  %debug  %dhist  %dirs  %doctest_mode  %echo  %ed  %edit  %env  %gui  %hist  %history  %install_default_config  %install_ext  %install_profiles  %killbgscripts  %ldir  %less  %load  %load_ext  %loadpy  %logoff  %logon  %logstart  %logstate  %logstop  %ls  %lsmagic  %macro  %magic  %matplotlib  %mkdir  %more  %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  %ren  %rep  %rerun  %reset  %reset_selective  %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  %%cmd  %%debug  %%file  %%html  %%javascript  %%latex  %%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.


line magic 以一個(gè)百分號(hào)開頭,作用與一行;

cell magic 以兩個(gè)百分號(hào)開頭,作用于整個(gè)cell。

最后一行Automagic is ON, % prefix IS NOT needed for line magics.說明在此時(shí)即使不加上%也可以使用這些命令。

使用 whos 查看當(dāng)前的變量空間:

%whos
Variable   Type    Data/Info
----------------------------
a          int     1
b          list    n=3

使用 reset 重置當(dāng)前變量空間:

%reset -f

再查看當(dāng)前變量空間:

%whos
Interactive namespace is empty.

使用 pwd 查看當(dāng)前工作文件夾:

%pwd
u"C:UserslijinDocumentsGitpython-tutorial