Run »
x = list(("apple", "banana", "cherry")) #display x: print(x) #display the data type of x: print(type(x))
['apple', 'banana', 'cherry']
<class 'list'>