Computer Science, asked by kriteyu, 6 months ago

Write a python program that reads a Number and display the pattern as shown below:

1

1 2 1

1 2 3 2 1

1 2 3 4 3 2 1

1 2 3 4 5 4 3 2 1



Answers

Answered by soumyaranjanjena22
0

Answer:

rows = 5

num = rows

for i in range(rows, 0, -1):

for j in range(0, i):

print(num, end=' ')

print("\r")

Similar questions