Pls give the solution
And no spam
Attachments:

Answers
Answered by
2
Answer:
# 1-22-333-4444 Pattern up to n lines
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()
Answered by
1
Answer:
Pls refer to the pic above for the answer
Attachments:

Similar questions