Tuples in Python — a practical guide to Python tuples with clear examples you can reuse in real projects.
Python Tutorial Series (22/95). Prefer one article? Read the complete Python tutorial.
Short description
Tuples are like lists but cannot be changed after creation — useful for records and dictionary keys (if hashable).
Tuple example
point = (10, 20)
x, y = point
print(x, y)
print(point[0])