Simple Hello World Program Tutorial

Now that you know how to use IDLE, lets begin with writing our first program.

The Hello World Program ( We usually do this in every language 😎)

Lets begin.

Fire up IDLE.

Go to File>New File.


Once it opens up, write the code in the new file.

print("Hello World!")


Now click on Save As and save the file with .py extension. See the image below.



Go to Run> Run Module or Press F5 to check whether the code is working or not.


It works.



Comments

Popular posts from this blog

Comparing Python 2.x and Python 3.x

Syntax of Python

IDLE