Files
30-seconds-of-code/snippets/head.md
Angelos Chalaris 47b718dd54 Remove semicolons
Remove semicolon in head
Remove semicolon in initial
Remove semicolons in tail
2020-01-03 13:08:15 +02:00

18 lines
204 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
```