Write the output of the following code:
for x in range(1,6):
for y in range(1, x+1):
print(x,’ ‘,y)
Answers
Answered by
0
Answer:
for x in range(1,6):
for y in range(1, x+1):
print(x,’ ‘,y)
Similar questions