Computer Science, asked by sarinsergiev, 4 months ago

Write a python program to using nested loop to get the following output: 1
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5

Answers

Answered by Anonymous
1

Answer:

thanks for free points

Answered by pythoncoder4
2

Answer:

for i in range(10):

for i in range(10): print(str(i) * i)

Explanation:

follow me and mark me as brainliest

thanks

Similar questions