Ipython基本使用

安装 Ipython
在 Linux 命令行中输出 如下命令进行安装

pip3   install  ipython

启动和退出 Ipython

[root@aldey ~]# ipython
Python 3.7.6 (default, Mar  2 2020, 22:15:30) 
Type 'copyright', 'credits' or 'license' for more information
IPython 7.13.0 -- An enhanced Interactive Python. Type '?' for help.

In [1]: exit 

基本使用
1、支持更友好的命令提示
在这里插入图片描述
2、执行 shell 命令
在这里插入图片描述
3、运行 python 脚本
在这里插入图片描述

发布了14 篇原创文章 · 获赞 9 · 访问量 464

猜你喜欢

转载自blog.csdn.net/Adley_zk/article/details/104631600