Final answer:
To convert a list to a tuple in Python, use the `tuple()` function.
Step-by-step explanation:
To convert a list to a tuple in Python, you can use the tuple() function. Here's an example:
my_list = [1, 2, 3, 4, 5]
my_tuple = tuple(my_list)
In this code, the tuple() function takes the my_list list as an argument and returns a new tuple containing the same elements. Now, my_tuple will be a tuple with the elements 1, 2, 3, 4, and 5.