Answers for "last item of array python"

1

python get last element of array

arr = ["cat", "dog", "rabbit"]
last_element = arr[-1]
Posted by: Guest on October-01-2020

Python Answers by Framework

Browse Popular Code Answers by Language