Answers for "end of array python"

5

last element in list py

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

how to get the end of a item in a python array

array = [1, 2, 3, 4, 5]

print(array[-1])
Posted by: Guest on March-18-2021

Python Answers by Framework

Browse Popular Code Answers by Language