Pattern printing program 1 22 333 using for loop in Python
for Loop - Question 16
In this question, we will see how to print the pattern 1 22 333 in Python programming using for loop. To know more about for loop click on the for loop lesson.
Q16) Write a program in Python to print the pattern given below using for loop.
1 22 333 4444 55555
Program
for r in range(1,6):
for c in range(1,r+1):
print(r,end='')
print()
Output
1 22 333 4444 55555