Update snippet descriptions

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-11-02 19:27:53 +02:00
parent a2cd6db3b0
commit 0ab4b3dbc5
26 changed files with 64 additions and 62 deletions

View File

@ -6,6 +6,7 @@ tags: list,beginner
Returns a list with `n` elements removed from the left.
- Use slice notation to remove the specified number of elements from the left.
- Omit the last argument, `n`, to use a default value of `1`.
```py
def drop(a, n = 1):