Create a List as an Array :

cars = ["Ford", "Volvo", "BMW"]
# Note: All list functions work same as array
print(cars)

Output :

['Ford', 'Volvo', 'BMW']