Answers for "how to print last element in list 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

get last elements of list python

>>> a = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
>>> a
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
>>> a[-9:]
[4, 5, 6, 7, 8, 9, 10, 11, 12]
Posted by: Guest on November-03-2021

Code answers related to "how to print last element in list python"

Python Answers by Framework

Browse Popular Code Answers by Language