Python Tuples and Tuple Methods
Tuples are an ordered sequences of items, just like lists. The main difference between tuples and lists is that tuples cannot be changed (immutable) unlike lists which can (mutable).
Initialize a Tuple
There are two ways to initialize an empty tuple. You can initialize an empty tuple by having () with no values in them.
# Way 1
emptyTuple = ()
You can also initialize an empty tuple by using the tuple
function.
# Way 2
emptyTuple = tuple()