Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to make a use of list in python to make your own length function

def length(item):
  total_length = 0
  for how_many in item:
    total_length += 1
  return total_length
print(length([9,85,4,7,4])
 
PREVIOUS NEXT
Tagged: #list #python #length #function
ADD COMMENT
Topic
Name
4+3 =