A
Q. Write the output of the following :
Code:
for x in range(1,4):
for y in range(2,5):
if x * y > 10:
break
print (x * y, end=" ")
for y in range(2,5):
if x * y > 10:
break
print (x * y, end=" ")
- Correct Answer - Option(B)
- Views: 19
- Filed under category Python
- Hashtags:
Discusssion
Login to discuss.