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
1
Answer:
thanks for free points
Answered by
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