Computer Science, asked by abdulshariq201327, 5 months ago

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 sayalimunde2006
0

Answer:

for x in range(1,6):

for y in range(1, x+1):

print(x,’ ‘,y)

Similar questions