IPython - 运行和编辑Python脚本



在本章中,让我们了解如何运行和编辑Python脚本。

运行命令

您可以在输入提示符中使用run命令来运行Python脚本。run命令实际上是行魔法命令,应该写成%run。但是,%automagic模式默认情况下始终开启,因此您可以省略它。

In [1]: run hello.py
Hello IPython

编辑命令

IPython还提供编辑魔法命令。它调用操作系统的默认编辑器。您可以通过Windows记事本编辑器打开它,并可以编辑脚本。保存输入后关闭它,将显示修改后脚本的输出。

In [2]: edit hello.py
Editing... done. Executing edited code...
Hello IPython
welcome to interactive computing

请注意,hello.py最初只包含一条语句,编辑后又添加了一条语句。如果未向编辑命令提供文件名,则会创建一个临时文件。请观察显示相同的以下代码。

In [7]: edit
IPython will make a temporary file named:
C:\Users\acer\AppData\Local\Temp\ipython_edit_4aa4vx8f\ipython_edit_t7i6s_er.py
Editing... done. Executing edited code...
magic of IPython
Out[7]: 'print ("magic of IPython")'
广告