wap using python to find length of a list using for loop
Answers
Answered by
1
Here is your answer:
list = [45, 78, 55, 73, 90]
count = 0
for i in list:
count += 1
print(f"Length of the list is {count}")
Similar questions