Core Python vocabulary for beginners.
list
Ordered mutable sequence.
tuple
Ordered immutable sequence.
dict
Key–value mapping.
set
Unordered collection of unique items.
def
Keyword to define a function.
class
Blueprint for creating objects.
module
A Python file that can be imported.
package
Directory of modules with __init__.py (typically).
venv
Isolated virtual environment for dependencies.
pip
Package installer for Python.
exception
Error object raised at runtime.
try/except
Handle exceptions safely.
list comprehension
Compact syntax to build a list.
None
Python's null value.