Test yourself under real exam conditions: 50 timed questions, 60 on the clock, pass mark 70%%. Instant score with a full review of everything you got wrong. Free — no account needed.
Exam details
Python is a high-level, interpreted programming language known for its readability and simplicity. It supports multiple paradigms including procedural, object-oriented, and functional programming.
Guido van Rossum created Python, with the first version released in 1991. It was named after the British comedy series Monty Python.
Python features dynamic typing, automatic memory management, extensive standard library, and cross-platform compatibility. It emphasizes code readability with significant whitespace.
Save the code in a file with .py extension, then run python filename.py in the terminal. Use python3 if Python 2 is also installed.
REPL stands for Read-Eval-Print Loop, an interactive shell for executing Python code line-by-line. Access it by typing python in the terminal.