demo_array8.py:
cars = ["Ford", "Volvo", "BMW"] cars.remove("Volvo") print(cars)
➜ begtut>python demo_array8.py
['Ford', 'BMW']