Tuple packing happens when you group multiple values into a tuple:
# Packing values into a tuple
person = "Alice", 25, "Engineer"
# person is now ("Alice", 25, "Engineer")
Python automatically packs the comma-separated values into a tuple. You don't need to write ("Alice", 25, "Engineer") explicitly, though you can for clarity.
This is useful when you want to group related data without defining a class or dictionary.