103. Python Program to Print Number Triangle.
How does this program work?
- This program is used to print Number Triangle using Python.
Here is the code
n = int(input("Enter the number of rows: "))
for i in range(0, n):
num = n
for j in range(0,n):
if(j > i-1):
print(num, end=" ")
num = num - 1
else:
print(" ",end=" ")
print( " ")