how to print only first value of first array in python 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]