You can create a tuple by placing items inside parentheses,
separated by commas:
my_tuple = (42,"hello", 3.14, [1, 2, 3], {"key: :value"}, (5, 6))
Tuples vs Lists:
Tuples: Immutable, you cannot change their contents (add, remove, or modify elements)
Lists: Mutable, allowing you to modify them.
-