Python Access Arrays
Arrays
Arrays are used to store multiple values in one single variable:
ExampleGet your own Python Server
Create an array containing car names:
cars = ["Ford", "Volvo", "BMW"]
Try it Yourself »
Note: Python does not have built-in support for Arrays, but Python Lists can be used instead.