Previous Next

Python Getting Started

Steps to Install Python:

Starting Python

Open Python IDE or any other text editor of your preferred choice. Type the following code:

print("Hello World!!")

Now save the file with the .py extension and execute it. You will receive the following outputs:

Hello World!!
Previous Next