Nest all content into snippets
This commit is contained in:
21
snippets/python/s/last.md
Normal file
21
snippets/python/s/last.md
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Last list element
|
||||
type: snippet
|
||||
language: python
|
||||
tags: [list]
|
||||
cover: lake-runner
|
||||
dateModified: 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.
|
||||
|
||||
```py
|
||||
def last(lst):
|
||||
return lst[-1]
|
||||
```
|
||||
|
||||
```py
|
||||
last([1, 2, 3]) # 3
|
||||
```
|
||||
Reference in New Issue
Block a user