Python - Hello, World!
Python is a high-level, interpreted and general-purpose programming language.
Python Installation
Windows (winget, chocolatey, scoop, installer)
$ winget install -e --id Python.Python.3.11
$ choco install python
$ scoop bucket add main
$ scoop install main/python
https://www.python.org/downloads/
Linux (debian/ubuntu, arch-linux)
$ sudo apt install python3
$ sudo pacman -S python
The "Hello, World!"
# main.py
print("Hello, World!")
$ python main.py