Python Ajouter la variable à répertorier

cars=["toyota", "volvo", "civic"]
cars.append("honda")
print(cars)
Beautiful Bear