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=" ")
β
Correct Answer: (B)
2 3 4 4 6 8 6 9
for x in range(1,4):
for y in range(2,5):
if x * y > 10:
break
print (x * y, end=" ")
You must be Logged in to update hint/solution