Run Program ❯
Python Home
❯
Run Code
Change Orientation
# Creating a list from a tuple my_tuple = ("apple", "banana", "cherry") my_list = list(my_tuple) # Display the new list print("List from Tuple:", my_list)