Python Tuples: Definition and Creation Methods
In Python, tuples are defined by enclosing the elements in parentheses () with commas between them. For example:
my_tuple = (1, 2, 3, 4, 5)
Tuples can also be created using the built-in function tuple(), which takes an iterable object as a parameter and returns a tuple containing the elements of the iterable object. For example:
my_list = [1, 2, 3, 4, 5]
my_tuple = tuple(my_list)