Tuple in Python
Tuple: A Tuple is a immutable data type. It is group of comma separated values of any data type enclosed with parenthesis ().
Example-
tuple1 = ("Abc", 1, 2.5, 3)
Tuple: A Tuple is a immutable data type. It is group of comma separated values of any data type enclosed with parenthesis ().
Example-
tuple1 = ("Abc", 1, 2.5, 3)