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