demo_array5.py:
cars = ["Ford", "Volvo", "BMW"] for x in cars: print(x)
C:\Users\My Name>python demo_array5.py
Ford
Volvo
BMW