Jak uzyskać ostatnią wartość na liście Python
your_list = ["apple", "orange", "grapes"]
last_value = your_list[-1]
Fancy Fly
your_list = ["apple", "orange", "grapes"]
last_value = your_list[-1]
def list_rindex(li, x):
for i in reversed(range(len(li))):
if li[i] == x:
return i
raise ValueError("{} is not in list".format(x))