Notes On ...

Python

#!/usr/bin/python3

def hello_world():
    print('This is Python')

hello_world()

Python is a high-level general-purpose programming language that excels in:

It is an interpreted language, as opposed to a compiled language

There is a very important distinction between Python 2.x.x and Python 3.x.x

Easy to Learn:

Pip

Python has its own package manager, called Pip, and its own repository of software you can import from, called the Python Package Index (PyPI) 🌐.