Programs to print triangles using *, numbers and characters
Example 1: Program to print half pyramid using *
* * * * * * * * * * * * * * *
Source Code
rows = int(input("Enter number of rows: "))
for i in range(rows):
for j in range(i+1):
print("* ", end="")
print()
In the above program, let's see how the pattern is printed.
- First, we get the height of the pyramid
rows
from the user. - In the first loop, we iterate from
i = 0
toi = rows
. - The second loop runs from j = 0 to i + 1. In each iteration of this loop, we print
i + 1
number of*
without a new line. Here, the row number gives the number of*
required to be printed on that row. For example, in the 2nd row, we print two*
. Similarly, in the 3rd row, we print three*
. - Once the inner loop ends, we print new line and start printing * in a new line.
Also Read:
Example 2: Program to print half pyramid a using numbers
1 1 2 1 2 3 1 2 3 4 1 2 3 4 5
Source Code
rows = int(input("Enter number of rows: "))
for i in range(rows):
for j in range(i+1):
print(j+1, end=" ")
print()
In the above program, let's see how the pattern is printed.
- First, we get the height of the pyramid
rows
from the user. - In the first loop, we iterate from
i = 0
toi = rows
. - In the second loop, we print numbers starting from
1
toj
, wherej
ranges from0
toi
. - After each iteration of the first loop, we print a new line.
Example 3: Program to print half pyramid using alphabets
A B B C C C D D D D E E E E E
Source Code
rows = int(input("Enter number of rows: "))
ascii_value = 65
for i in range(rows):
for j in range(i+1):
alphabet = chr(ascii_value)
print(alphabet, end=" ")
ascii_value += 1
print()
The working of the above example is also similar to the other examples discussed above except that the ascii values are printed here. The ascii value for alphabets start from 65 (i.e. A). Therefore, in each iteration, we increase the value of ascii_value
and print its corresponding alphabet.
Also Read:
Programs to print inverted half pyramid using * and numbers
Example 4: Inverted half pyramid using *
* * * * * * * * * * * * * * *
Source Code
rows = int(input("Enter number of rows: "))
for i in range(rows, 0, -1):
for j in range(0, i):
print("* ", end=" ")
print()
This example is similar to an upright pyramid except that here we start from the total number of rows
and in each iteration we decrease the number of rows
by 1.
Example 5: Inverted half pyramid using numbers
1 2 3 4 5 1 2 3 4 1 2 3 1 2 1
Source Code
rows = int(input("Enter number of rows: "))
for i in range(rows, 0, -1):
for j in range(1, i+1):
print(j, end=" ")
print()
The only difference between an upright and an inverted pyramid using numbers is that the first loop starts from the total number of rows
to 0.
Programs to print full pyramids
Example 6: Program to print full pyramid using *
* * * * * * * * * * * * * * * * * * * * * * * * *
Source Code
rows = int(input("Enter number of rows: "))
k = 0
for i in range(1, rows+1):
for space in range(1, (rows-i)+1):
print(end=" ")
while k!=(2*i-1):
print("* ", end="")
k += 1
k = 0
print()
This type of pyramid is a bit more complicated than the ones we studied above.
- The outermost loop starts from
i = 1
toi = row + 1
. - Among the two inner loops, the for loop prints the required spaces for each row using formula
(rows-i)+1
, where rows is the total number of rows andi
is the current row number. - The while loop prints the required number stars using formula
2 * i - 1
. This formula gives the number of stars for each row, where row isi
.
Example 7: Full Pyramid of Numbers
1 2 3 2 3 4 5 4 3 4 5 6 7 6 5 4 5 6 7 8 9 8 7 6 5
Source Code
rows = int(input("Enter number of rows: "))
k = 0
count=0
count1=0
for i in range(1, rows+1):
for space in range(1, (rows-i)+1):
print(" ", end="")
count+=1
while k!=((2*i)-1):
if count<=rows-1:
print(i+k, end=" ")
count+=1
else:
count1+=1
print(i+k-(2*count1), end=" ")
k += 1
count1 = count = k = 0
print()
Like example 6, this example also makes use of two loops inside a for loop.
- The outer for loop iterates through each row.
- Here we use two counters
count
andcount1
for printing the spaces and numbers respectively. - The inner for loop prints the required spaces using formula
(rows-i)+1
, where rows is the total number of rows andi
is the current row number. - The while loop prints the numbers where
2 * i - 1
gives the number of items in each row.
Example 8: Inverted full pyramid of *
* * * * * * * * * * * * * * * * * * * * * * * * *
Source Code
rows = int(input("Enter number of rows: "))
for i in range(rows, 1, -1):
for space in range(0, rows-i):
print(" ", end="")
for j in range(i, 2*i-1):
print("* ", end="")
for j in range(1, i-1):
print("* ", end="")
print()
In this example, we have used a total of 4 for loops.
- The outer for loop iterates from
i = rows
toi = 1
. - The first inner for loop prints the spaces required in each row.
- The second inner for loop prints the first half of the pyramid (vertically cut), whereas the last inner for loop prints the other half.
Example 9: Pascal's Triangle
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1
Source Code
rows = int(input("Enter number of rows: "))
coef = 1
for i in range(1, rows+1):
for space in range(1, rows-i+1):
print(" ",end="")
for j in range(0, i):
if j==0 or i==0:
coef = 1
else:
coef = coef * (i - j)//j
print(coef, end = " ")
print()
In this example, we have used three for loops.
- The outer loop iterates from
1
torows + 1
. - The first inner loop prints the spaces.
- The second inner loop first finds the number to be printed using statement
coef = coef * (i - j) // j
and then prints it. Here,i
is the row number andj
is the value ranging from0
toi
.
Example 10: Floyd's Triangle
1 2 3 4 5 6 7 8 9 10
Source Code
rows = int(input("Enter number of rows: "))
number = 1
for i in range(1, rows+1):
for j in range(1, i+1):
print(number, end=" ")
number += 1
print()
This is one of the easiest patterns.
number
variable is initialized with value 1.- The outer for loop iterates from 1 to the total number of rows.
- The inner for loop starts from
1
toi + 1
, where i is the row number. After each iteration, the value of thenumber
is increased.