tell me the input ..
*
1
**
12
***
123
****
1234
*****
12345
it's urgent
give me proper answer don't give nonsense answer please
Answers
Answered by
3
Answer:
Input
Input N: 5
Output
1
12
123
1234
12345 1
12
123
1234
12345
Explanation:
# 1-12-123-1234 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(j, end="")
print()
hope it helps
Similar questions