Glossary Language

Python

Python is a general-purpose programming language often used for automation, scripting, web services, data work, and command-line tools.

Python turns up a lot in automation work because it is readable, widely supported, and has libraries for almost every API you are likely to meet.

It is also the language behind many DevOps tools. Ansible is Python-based, plenty of Azure and AWS helper scripts use it, and a lot of AI tooling expects a Python environment before anything interesting can run.

The part to manage carefully is packaging. Use a virtual environment or Conda environment for project work, pin dependencies where repeatability matters, and avoid installing everything into the system Python just because it works once.