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

Make life eco friendly

 Making your life eco-friendly involves adopting habits and practices that reduce your impact on the environment. Here are some simple and e...