A tuple in Python is a collection of items, which is ordered and unchangeable (immutable). It is written with round brackets. For example: my\_tuple = (“apple”, “banana”, “cherry”). Unlike lists, once a tuple is created, you cannot change its values.