A
Q. What will be the output of the following code snippet?
Code:
count = 0
while(True):
if count % 3 == 0:
print(count, end = " ")
if(count > 15):
break;
count += 1
while(True):
if count % 3 == 0:
print(count, end = " ")
if(count > 15):
break;
count += 1
- Correct Answer - Option(C)
- Views: 12
- Filed under category Python
- Hashtags:
Discusssion
Login to discuss.