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
Science,
10 hours ago
English,
10 hours ago
Chemistry,
19 hours ago
Economy,
8 months ago
Environmental Sciences,
8 months ago