Reverse Pyramid Pattern Program :

Code :

#Reverse Pyramid Using Python www.codewithcurious.com
def ReversedPyramid(rows):
   k = 2* rows -2
   for i in range(rows,-1,-1):
      for j in range(k,0,-1):
         print(end=" ")
      k = k +1
      for j in range(0, i+1):
          print("*", end=" ")
      print("\n")
rows = 5
ReversedPyramid(rows)

Output :

Leave a Comment

Your email address will not be published. Required fields are marked *

All Coding Handwritten Notes

Browse Handwritten Notes