Run
#a list cars = ['Ford', 'Volvo', 'BMW', 'Tesla'] #append item to list cars.append('Audi') print(cars)
Output