20
loading...
This website collects cookies to deliver better user experience
len(iterable)
list_1 = ["Hire", "the", "top", 1, "%", "freelance", "developers"]
print ("length of the list = ", len(list_1))
#Output - "length of the list = 7"
list_1 = ["Hire", "the", "top", 1, "%", "freelance", "developers"]
counter = 0
for i in list_1:
counter += 1
print ("length of the list = ", counter)
#Output - "length of the list = 7"