Jak użyć listy w Pythonie, aby wykonać własną funkcję długości

def length(item):
  total_length = 0
  for how_many in item:
    total_length += 1
  return total_length
print(length([9,85,4,7,4])
Programmer of empires