Answer: list()
Step-by-step explanation:
# Define a tuple
my_tuple = (1, 2, 3, 4, 5)
# Convert the tuple to a list
my_list = list(my_tuple)
# Print the list
print(my_list)
9.4m questions
12.1m answers