Articles

Program to print an inverted right angled triangle using asterisk in Python

Program to print an inverted right angled triangle using asterisk in Python


In the python programming article, we are going to learn

  • program to print an inverted right angled triangle using asterisks in python

Program to print an inverted right angled triangle using asterisks in Python

The program is as follows:

 

# Owner : TutorialsInhand Author : Devjeet Roy

size = int(input("Enter the no of rows: "))

for i in range(size,0,-1):
    for j in range(i):
        print("*", end=" ")
    print()

The output is as follows:

 

PS C:\Users\DEVJEET\Desktop\tutorialsInHand> python code.py
Enter the no of rows: 5
* * * * *
* * * *
* * *
* *
*
PS C:\Users\DEVJEET\Desktop\tutorialsInHand> python code.py
Enter the no of rows: 8
* * * * * * * *
* * * * * * *
* * * * * *
* * * * *
* * * *
* * *
* *
*

Few important tips about the program

1. First we ask the user to enter the number of rows of the pattern.

2. Then we use nested loops to print the pattern. The nested loops take care of the rows and columns respectively.

3. We use the blank print() statement to get the control to the next line.

 

program-to-print-inverted-right-angled-triangle-using-asterisks-in-python

 


Basic Python Programs

Would you like to see your article here on tutorialsinhand. Join Write4Us program by tutorialsinhand.com

About the Author
Devjeet Roy
Full Stack Web Developer & Blockchain Enthusiast
Page Views :    Published Date : Oct 13,2022  
Please Share this page

Related Articles

Like every other website we use cookies. By using our site you acknowledge that you have read and understand our Cookie Policy, Privacy Policy, and our Terms of Service. Learn more Got it!