Q10.What will be the output of the following code snippet? Enter an integer as your answer.
```
result = 0
for i in range(1, 15):
if i % 2 == 0:
continue
elif i % 5 == 0:
break
result += i
print(result)
```
Save
Check
Details
Q10
27 Oct 2024
Q10.What will be the output of the following code snippet? Enter an integer as your answer.
```
result = 0
for i in range(1, 15):
if i % 2 == 0:
continue
elif i % 5 == 0:
break
result += i
print(result)
```