溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

linux下使用IPython編程工具

發(fā)布時(shí)間:2020-02-14 11:10:54 來(lái)源:網(wǎng)絡(luò) 閱讀:432 作者:warrent 欄目:編程語(yǔ)言

1、安裝IPython工具

IPython是一個(gè)第三方工具,使用以下命令進(jìn)行安裝:

[root@python ~]# pip install ipython        #安裝ipython
[root@python ~]# ipython             #執(zhí)行ipython進(jìn)入IPython交互式界面
Python 3.8.1 (default, Feb  3 2020, 18:39:50) 
Type 'copyright', 'credits' or 'license' for more information
IPython 7.12.0 -- An enhanced Interactive Python. Type '?' for help.
In [1]: sum=0                                                            

In [2]: for i in range(10): 
   ...:     sum+=i 
   ...: print(sum)                                                       
45
In [3]: import os                                                        
In [4]: os.getlogin()                                                    
Out[4]: 'root'

Ipython具有以下特性:

  • 支持語(yǔ)法高亮;
  • 自動(dòng)縮進(jìn);
  • Tab補(bǔ)全;
  • 快速獲取幫助信息;
  • 搜索歷史;
  • 執(zhí)行shell命令;

2、magic函數(shù)

IPython提供了很多功能強(qiáng)大的函數(shù),所有IPython提供的函數(shù)都以“%”開頭。以“%”開頭的這類功能強(qiáng)大的函數(shù),在IPython中稱為magic函數(shù)。magic函數(shù)主要是為IPython提供增強(qiáng)的功能、與操作系統(tǒng)交互、操縱用戶的輸入和輸出以及對(duì)IPython進(jìn)行配置。

可以通過以下指令來(lái)獲取magic函數(shù)列表,如下:

In [28]: %lsmagic                #以下任意函數(shù)都可以加?號(hào)來(lái)查詢函數(shù)對(duì)應(yīng)的功能,如:%save?
Out[28]: 
Available line magics:
%alias  %alias_magic  %autoawait  %autocall  %autoindent  %automagic  %bookmark  %cat  %cd  %clear  %colors  %conda  %config  %cp  %cpaste  %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  %paste  %pastebin  %pdb  %pdef  %pdoc  %pfile  %pinfo  %pinfo2  %pip  %popd  %pprint  %precision  %prun  %psearch  %psource  %pushd  %pwd  %pycat  %pylab  %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.

3、使用IPython與操作系統(tǒng)交互

IPython可以更好的與操作系統(tǒng)交互,在使用Python進(jìn)行交互編程時(shí),不用退出Python shell 就可以執(zhí)行l(wèi)inux命令,magic函數(shù)里的%cd和%pwd作用相當(dāng)于linux下的cd命令和pwd命令,此外,在IPython中,可以通過“!cmd”的形式執(zhí)行任何Linux命令,如下:

#直接交互
In [31]: %pwd                                                            
Out[31]: '/root'

In [32]: %cd /usr/src/                                                   
/usr/src

In [33]: %pwd                                                            
Out[33]: '/usr/src'
In [42]: !ls / | grep e                                                  
dev
etc
home
media
#亦可以使用賦值的方式進(jìn)行使用,如下:
In [43]: data=!df                                                        

In [44]: data                                                            
Out[44]: 
['文件系統(tǒng)               1K-塊    已用     可用 已用% 掛載點(diǎn)',
 '/dev/mapper/cl-root 52403200 4779936 47623264   10% /',
 'devtmpfs              917796       0   917796    0% /dev',
 'tmpfs                 933644      84   933560    1% /dev/shm',
 'tmpfs                 933644    9184   924460    1% /run',
 'tmpfs                 933644       0   933644    0% /sys/fs/cgroup',
 '/dev/sda1            1038336  176544   861792   18% /boot',
 '/dev/mapper/cl-home 49250820   33052 49217768    1% /home',
 'tmpfs                 186732      16   186716    1% /run/user/42',
 'tmpfs                 186732       0   186732    0% /run/user/0']
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI