Python Getting Started
Steps to Install Python:
- Go to the official Python website: https://www.python.org/
- Download the executable file according to your Operating System.
- Execute the executable file and follow the installation process.
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!!