Python como usar o head
January 04, 2020
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
Acesse a Referência original 1: Acesse a Referência original 2:
January 04, 2020
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
Acesse a Referência original 1: Acesse a Referência original 2: