Answers for "get last value in list python"

3

check if is the last element in list python

if x == my_list[-1]:
    # do what you want
Posted by: Guest on August-28-2020
3

how to access the last element of a list in python

l = [1, 2, 3, 4, 5]
print(l[-1])
Posted by: Guest on August-27-2020
0

how to get last element of list in python

MyList = [1, 2, 3, 4, 5]
print(MyList[len(Mylist)-1])
# Makes you look professional
Posted by: Guest on January-22-2021

Code answers related to "get last value in list python"

Python Answers by Framework

Browse Popular Code Answers by Language