Variables, Types & Indentation
Python has no braces — blocks are defined purely by indentation (4 spaces is convention). Core built-in types include int, float, str, bool, list, dict, tuple, and set.
name = "Ada"
age = 29
is_active = True
scores = [90, 85, 78]
if age >= 18:
print(f"{name} is an adult")
else:
print(f"{name} is a minor")