python idle是什么意思

Z, ZLW 779

IDLE是一个Python Shell,shell的意思就是“外壳”,基本上来说,就是一个通过键入文本与程序交互的途径!白话文来说,idle就是编辑、运行、浏览、调试python的一个工具,他使用Thinter GUI工具包开发的python程序,可以在几乎任何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

双击下载的安装包,选择合适的安装位置,点击下一步下一步即可安装完成

回复

我来回复
  • 暂无回复内容

注册PingCode 在线客服
站长微信
站长微信
电话联系

400-800-1024

工作日9:30-21:00在线

分享本页
返回顶部