demo_array5.py:
cars = ["Ford", "Volvo", "BMW"] for x in cars: print(x)
➜ begtut>python demo_array5.py
Ford
Volvo
BMW