- Jupyter 教程
- Jupyter - 首页
- IPython
- IPython - 简介
- IPython - 安装
- IPython - 快速入门
- 运行和编辑Python脚本
- IPython - 历史命令
- IPython - 系统命令
- IPython - 命令行选项
- 动态对象自省
- IPython - I/O缓存
- 设置IPython为默认Python环境
- 导入Python Shell代码
- IPython - 嵌入IPython
- IPython - 魔术命令
- Jupyter
- Jupyter项目 - 概述
- Jupyter Notebook - 简介
- 在线使用Jupyter
- 安装和快速入门
- Jupyter Notebook - 仪表板
- Jupyter Notebook - 用户界面
- Jupyter Notebook - 单元格类型
- Jupyter Notebook - 编辑
- Jupyter Notebook - Markdown单元格
- 单元格魔法函数
- Jupyter Notebook - 绘图
- 转换Notebook
- Jupyter Notebook - IPyWidgets
- QtConsole
- QtConsole - 快速入门
- QtConsole - 多行编辑
- QtConsole - 内联图形
- QtConsole - 保存为Html
- QtConsole - 多个控制台
- 连接到Jupyter Notebook
- 使用github和nbviewer
- JupyterLab
- JupyterLab - 概述
- 安装和快速入门
- JupyterLab - 界面
- JupyterLab - 安装R内核
- Jupyter资源
- Jupyter - 快速指南
- Jupyter - 有用资源
- Jupyter - 讨论
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")'
广告