Python Basics (3): Python Integrated Development Tool IDLE

insert image description here


Hello everyone, I am Waterdrop~~

In this article, let's take a look at how to use the development tool IDLE that comes with Python.

IDLE is a built-in integrated development tool for Python, we don't need to install it separately, it is installed at the same time when installing Python. IDLE already has the basic features of an IDE, such as: syntax highlighting, paragraph indentation, basic text compilation, a scheduler, and more.

1. Open IDLE

Find [Python 3.11] in the [Start] menu, and click [IDLE (Python 3.11 64-bit)] to open IDLE.

insert image description here

The figure below shows the opened IDLE Shell window, which will display the current Python version information, which can be accessed from ">>>"

Guess you like

Origin blog.csdn.net/weixin_67276852/article/details/129603798