Python Hello World

Hello World Using Python

You can execute Hello World Program using Python in different way:

1. Window CMD or PowerShell

2. Python IDLE(Integrated Development and Learning Environment)

3. IDE(PyCharm, Thonny,VScode etc.)

1. Window CMD or PowerShell

Go to start and open CMD or PowerShell. After open it you need to type python.

In PowerShell just like the same like below:

2. Python IDLE

When you install Python, IDLE is also installed by default. This makes it easy to get started in Python.

Go to start and type Python and select IDLE Python then type below code :

        print("Hello World")
    

Like below:

No comments: