向数组添加元素

  1. cars = ["Porsche", "Volvo", "BMW"]
  2.  
  3. cars.append("Audi")
  4.  
  5. print(cars)