Files
30-seconds-of-code/snippets/last.md
2023-04-28 22:24:23 +03:00

294 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Last list element snippet
list
lake-runner 2020-11-02T19:28:05+02:00

Returns the last element in a list.

  • Use lst[-1] to return the last element of the passed list.
def last(lst):
  return lst[-1]
last([1, 2, 3]) # 3