📅  最后修改于: 2022-03-11 14:46:50.129000             🧑  作者: Mango
def length(item):
total_length = 0
for how_many in item:
total_length += 1
return total_length
print(length([9,85,4,7,4])