Python is a high-level, interpreted programming language known for its simplicity and readability. It was created by Guido van Rossum and was first released in 1991. Python supports multiple programming paradigms, including procedural, object-oriented, and functional programming.
To install Python:
Verify the installation by opening a terminal or command prompt and typing:
python --version
You can run Python code in two modes:
Example: Hello World
# A simple Python program print("Hello, World!")
Output:
Hello, World!