
Python is a high-level, interpreted and general-purpose programming language.
Python Installation
For Python installation, I highly recommend using a package manager, even on Windows.
Windows (Chocolatey, Scoop)
$ choco install python
$ scoop bucket add main
$ scoop install main/python
Chocolatey and Scoop are third-party package managers for Windows.
Winget (Windows’ built-in package manager) works, but I’m not a fan.
Linux (Debian/Ubuntu, Arch Linux, Void Linux)
$ sudo apt install python3
$ sudo pacman -S python
$ sudo xbps-install python
The “Hello, World!”
To create a ‘Hello, World!’ program in Python, simply use the built-in print() function.
# main.py
print("Hello, World!")
$ python main.py