PHP
·
发表于 5年以前
·
阅读量:8290
此函数返回所传递列表的第一个元素。
def head(list):
return list[0]
print(head([1, 2, 3, 4, 5])) # 1