добавить элемент на массив Python

data = []
data.append("Item")

print(data)
Colorful Crane