📜  如何在 python 中使用 list 来制作自己的长度函数 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:50.129000             🧑  作者: Mango

代码示例1
def length(item):
  total_length = 0
  for how_many in item:
    total_length += 1
  return total_length
print(length([9,85,4,7,4])