A tuple is a immutable list of values. Tuples are one of Python's simplest and most common collection types, and can be created with the comma operator (value = 1, 2, 3).
(1, a, "hello") # a must be a variable
() # an empty tuple
(1,) # a 1-element tuple. (1) is not a tu...