Installation
Python for Windows
- visit Python release for Windows.
- Download the compitable installer for your windows.
- follow the instructions for installation by clicking on Next button.
Python for MacOs
- visit Python release for MacOs.
- Download the compitable installer for your macos.
- follow the instructions for installation by clicking on Next button.
Python for Linux
- you can install it from terminal.
sudo apt install python3
Python Quickstart
- Let’s VS code for creating our first file and run it.
- Open any working directory/folder and create your first file called
hello.py
- write your first code-
print("Hello Python!")
4.Open your command line, navigate to the directory where you saved your file, and run:
python hello.py