Computer Science, asked by iscziya, 3 days ago

write a program to print the given pattern
1
22
333
4444
55555​

Answers

Answered by ayanhjsr
0

6666666666666666666666666666666

Answered by Santoshdevarapalli
1

Answer:

n = int(input("Enter number of rows: ")) for i in range(1,n+1): for j in range(1, i+1): print(i, end="") print()

Explanation:

I hope this helps you please mark me as brainlist

Similar questions