A
Q. How many times the following loop will execute?
Code:
a = [10, 11, 12, 13, 45]
for a[3] in a:
print("Flow")
for a[3] in a:
print("Flow")
- Correct Answer - Option(A)
- Views: 16
- Filed under category Python
- Hashtags:
Discusssion
Login to discuss.