write a program to print the given pattern
1
22
333
4444
55555
Answers
Answered by
0
6666666666666666666666666666666
Answered by
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
Physics,
1 day ago
Math,
3 days ago
History,
3 days ago
Computer Science,
8 months ago
English,
8 months ago