Answers for "how to get the third last item in a list python"

1

python second to last element in list

result = list[-2]
Posted by: Guest on April-21-2021
1

get every item but the last item of python list

x = [1, 2, 3, 4]

#same array, but the last item.
notLast = x[0:-1]
Posted by: Guest on November-05-2020

Code answers related to "how to get the third last item in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language