Python#
Installation#
$ sudo apt install python3-pip
Version#
$ python --version
Python 3.10.12
Example#
hello.py:
print("Hello, World!")
python3 Ver.
$ python3 hello.py
Hello, World!
REPL Ver.
$ python3
Python 3.10.12 (main, Sep 11 2024, 15:47:36) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> print("Hello, World!")
Hello, World!