Files
30-seconds-of-code/snippets/head.md
Isabelle Viktoria Maciohsek 051e0db2c4 Update head.md
2019-12-22 21:21:12 +02:00

18 lines
205 B
Markdown

---
title: head
tags: list,beginner
---
Returns the head of a list.
Use `lst[0]` to return the first element of the passed list.
```py
def head(lst):
return lst[0]
```
```py
head([1, 2, 3]); # 1
```