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
Math,
14 hours ago
Hindi,
14 hours ago
Chemistry,
1 day ago
Economy,
8 months ago
Environmental Sciences,
8 months ago