白话文来说,idle就是编辑、运行、浏览、调试python的一个工具,他使用Thinter GUI工具包开发的python程序,可以在几乎任何python平台上运行。对于很多人来说,idle就是一个简单易用的命令行输入的替代方案。在python中idle有很多,下面就让我们一起来详细了解下吧。
1、IDLE
启动方式:
Python
Cmd:
PS C:\Users\Administrator> python Python 3.7.2 (tags/v3.7.2:9a3ffc0492, Dec 23 2018, 23:09:28) [MSC v.1916 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> print("i am cmd...") i am cmd...
Idle所在路径:
D:\Python37\Lib\idlelib\idle.bat
2、Ipython
启动方式:
Ipython
展示:
3、jupyter notebook
安装:
pip install --upgrade pip pip install jupyter
启动方式:
jupyter notebook
4、Pycharm
安装:
https://www.jetbrains.com/pycharm/download/download-thanks.html?platform=windows&code=PCC
双击下载的安装包,选择合适的安装位置,点击下一步下一步即可安装完成
好啦,以上就是关于IDLE的简单介绍了,大家感兴趣的话,可以跟着上述内容,详细掌握了解学习,更多python基础教程可以点击了解。