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