-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: adjust the makedown syntax format for variables
- Loading branch information
1 parent
17600d5
commit f879587
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
# IPython | ||
|
||
Python 工程师需要快速验证代码的运行结果是否符合预期,最为方便的做法就是使用 Python 自带的交互式解释器,但是因为其有很多弊端,所以 IPython 就是不二的选择了。 | ||
`Python` 工程师需要快速验证代码的运行结果是否符合预期,最为方便的做法就是使用 `Python` 自带的交互式解释器,但是因为其有很多弊端,所以 `IPython` 就是不二的选择了。 | ||
|
||
- **自带 Python 解释器的弊端** | ||
- **自带 `Python` 解释器的弊端** | ||
|
||
- 不能在退出时保存历史记录以备未来查询 | ||
- 不支持 Tab 自动补全,其实是可以支持的 | ||
- 不方便在交互式环境下执行 Shell 命令 | ||
- 不支持 `Tab` 自动补全,其实是可以支持的 | ||
- 不方便在交互式环境下执行 `Shell` 命令 | ||
- 不能快速获得模块、函数、类、文档、原始代码信息 | ||
|
||
- **IPython 提供的常用功能** | ||
- 强大的交互式 shell 命令 | ||
- 基于浏览器的 notebook 支持代码、文字、数学表达式、内嵌图和其他丰富的媒体 | ||
- 支持交互式数据可视化的和 GUI 工具包的使用 | ||
- **`IPython` 提供的常用功能** | ||
- 强大的交互式 `shell` 命令 | ||
- 基于浏览器的 `notebook` 支持代码、文字、数学表达式、内嵌图和其他丰富的媒体 | ||
- 支持交互式数据可视化的和 `GUI` 工具包的使用 | ||
- 灵活的、可嵌入的解释器方便加入到自己的项目 | ||
- 支持并行计算的简单易用、高性能的工具 |