Python3交互式shell ipython3安装及使用详解
时间:2020-11-16 11:54:12|栏目:Python代码|点击: 次
IPython 中 的 “I” 代表 交互 interactive
特点
IPython 是一个 python 的 交互式 shell,比默认的 python shell 好用得多
- 支持自动补全
- 自动缩进
- 支持 bash shell 命令
- 内置了许多很有用的功能和函数
IPython 是基于 BSD 开源的
版本
- Python 2.x 使用的解释器是 ipython
- Python 3.x 使用的解释器是 ipython3
已经安装好python3后使用如下命令安装ipython
pip3 install ipython
使用
上一篇:python实现发送form-data数据的方法详解
栏 目:Python代码
本文标题:Python3交互式shell ipython3安装及使用详解
本文地址:http://www.codeinn.net/misctech/23129.html