Home / Computer Science / Python / IDLE in Python (Integrated Development & Learning Environment)

IDLE in Python (Integrated Development & Learning Environment)

While installing, python is come up with IDLE (GUI). That means it is GUI for python developers and full form of IDLE is integrated development and learning environment. It works for both multiple line commands and single line commands execution.

As the same we execute single line statements in the IDLE.

IDLE - Python
IDLE – Python

 

For multiple lines of commands, write multiple commands in the new file. By click on File Menu and create New File save that file with .py extension.

I write the below code and save the file with name DEMO.py.

print ("Python is simple to learn")

print (“You are learning python tutorials from Learners Choice”)

DEMO.py
DEMO.py

And then click on Run or Press F5. Now your code will execute.

Execution in Python IDLE
Execution in Python IDLE

About santosh G

Hi, i am Santosh Gadagamma, a tutor in Software Engineering and an enthusiast for sharing knowledge in Computer Science and other domains. I developed this site to share knowledge to all the aspirants of technologies like, Java, C/C++, DBMS/RDBMS, Bootstrap, Big Data, Javascript, Android, Spring, Hibernate, Struts and all levels of software project design, development, deployment, and maintenance. As a programmer I believe that, “The world now needs computers to function.” Hope, this site guides you as a learning tool towards greater heights. I believe that Education has no end points and i wish to learn more in the process of teaching you….,

Check Also

Interview Questions for Python Strings

Unleashing the Power of Python Strings: Advanced Methods for String Manipulation

In this blog post, we will explore advanced methods for python strings that expand your …