list()` constructor :# Using list() constructor to create a list
my_list = list(("apple", "banana", "cherry"))
print(my_list)['apple', 'banana', 'cherry']list()` constructor to create a list `my_list` with three elements: "apple", "banana", and "cherry". We used double parentheses to pass these elements as an argument to the constructor.print()` function, which outputted `['apple', 'banana', 'cherry']`.