Q. How many times the following loop will execute?
Code:
a = [10, 11, 12, 13, 45]
for a[3] in a:
print("Flow")
β
Correct Answer: (A)
5
a = [10, 11, 12, 13, 45]
for a[3] in a:
print("Flow")
You must be Logged in to update hint/solution