Python Access an Array
Access the Elements of an Array
You refer to an array element by referring to the index number.
ExampleGet your own Python Server
Get the value of the first array item:
x = cars[0]
Try it Yourself »