Answers for "get the last element"

5

last element in list py

l = [1,2,3,4,5]
last = l[len(l)-1]
Posted by: Guest on June-29-2020
-2

how to get the last element of an array

//Lets we have a array called arr
let arr = ["s","fg","d"]
//Lets print the last element
print(arr[arr.length-1])
Posted by: Guest on December-05-2020

Code answers related to "get the last element"

Python Answers by Framework

Browse Popular Code Answers by Language