Python Tuple Data Type
Tuple is one of the 14 data types in Python. It's an array-like data type, but defined using parenthesis:
tuple = ("Apples", "Oranges", "Pomegranate")
Printing the tuple:
print(tuple)
Printing this tuple produces the following output in console:
("Apples", "Oranges", "Pomegranate")