- Jupyter 教程
- Jupyter - 首页
- IPython
- IPython - 简介
- IPython - 安装
- IPython - 入门
- 运行和编辑 Python 脚本
- IPython - 历史命令
- IPython - 系统命令
- IPython - 命令行选项
- 动态对象自省
- IPython - I/O 缓存
- 将 IPython 设置为默认 Python 环境
- 导入 Python Shell 代码
- IPython - 嵌入 IPython
- IPython - 魔法命令
- Jupyter
- Project Jupyter - 概述
- Jupyter Notebook - 简介
- 使用在线 Jupyter
- 安装和入门
- Jupyter Notebook - 仪表盘
- Jupyter Notebook - 用户界面
- Jupyter Notebook - 单元格类型
- Jupyter Notebook - 编辑
- Jupyter Notebook - Markdown 单元格
- 单元格魔法函数
- Jupyter 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 Shell 代码
IPython 可以从标准 Python 控制台读取,默认提示符为>>>,以及另一个 IPython 会话。以下屏幕截图显示了在标准 Python shell 中编写的 for 循环 -
复制代码(以及 Python 提示符)并将代码粘贴到 IPython 输入单元格中。IPython 会智能地过滤掉输入提示符(>>> 和 ...)或 IPython 提示符(In [N]: 和 ...:)
类似地,可以将来自一个 IPython 会话的代码粘贴到另一个 IPython 会话中。下面给出的第一个屏幕截图显示了一个 IPython 窗口中 SayHello() 函数的定义 -
现在,让我们选择代码并将其粘贴到另一个 IPython shell 中并调用 SayHello() 函数。
广告