📜  IPython-运行和编辑Python脚本

📅  最后修改于: 2020-11-08 07:03:10             🧑  作者: Mango


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

运行命令

您可以在输入提示中使用run命令来运行Python脚本。 run命令实际上是行魔术命令,实际上应该写为%run 。但是,默认情况下, %automagic模式始终处于启用状态,因此您可以忽略此模式。

In [1]: run hello.py
Hello IPython

编辑指令

IPython还提供了edit magic命令。它调用操作系统的默认编辑器。您可以通过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")'