Lists are ordered, mutable collections defined using square brackets.
append()
remove()
pop()
sort()
reverse()
fruits = ["apple", "banana", "cherry"] print(fruits[1]) # banana fruits.append("date") print(fruits)