列表头部

返回列表的头部。

  • 使用lst[0]来返回传入列表的第一个元素。
def head(lst):
  return lst[0]

head([1, 2, 3]) # 1