Merge pull request #168 from Trinityyi/patch-1

Fix typo in head
This commit is contained in:
Angelos Chalaris
2019-12-22 21:24:55 +02:00
committed by GitHub

View File

@ -5,7 +5,7 @@ tags: list,beginner
Returns the head of a list.
use `lst[0]` to return the first element of the passed list.
Use `lst[0]` to return the first element of the passed list.
```py
def head(lst):