Answers for "how to create list when we dont have the lenght python"

1

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])
Posted by: Guest on July-31-2021

Code answers related to "how to create list when we dont have the lenght python"

Python Answers by Framework

Browse Popular Code Answers by Language