91. 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 num in range(1,n+1):
for i in range(0,num):
print (num, end= " ")
print( " ")