google.com, pub-4617457846989927, DIRECT, f08c47fec0942fa0 Learn to enjoy every minute of your life.Only I can change my life.: Program in python to demonstrate star pattern printing triangle

Friday, December 27, 2019

Program in python to demonstrate star pattern printing triangle

Program in python to demonstrate star pattern printing triangle
  
Answer:

def triangle(n):
k = 2*n - 2
     for i in range(0, n):
     
        for j in range(0, k):
            print(end=" ")
     
     
        k = k - 1
     
       
        for j in range(0, i+1):
         
         
            print("* ", end="")
     
     
        print("\r")

n = 5
triangle(n)



Output:

    *
   * *
  * * *
 * * * *
* * * * * 

No comments:

Post a Comment

Biggest achievements of life

 Here are the biggest achievements of life, explained with additional examples: 1. Finding Purpose and Fulfillment Discovering one's pas...