python get an array of the first elements in an array of arrays code example
Example: how to get first element of array in python
arr = ["cat", "dog", "rabbit"]
first_element = arr[0]
arr = ["cat", "dog", "rabbit"]
first_element = arr[0]