Files
30-seconds-of-code/snippets/head.md
2019-08-20 14:08:52 +03:00

205 B

title, tags
title tags
head list,beginner

Returns the head of a list.

use lst[0] to return the first element of the passed list.

def head(lst):
  return lst[0]
head([1, 2, 3]); # 1