Explore

Pattern Programs

Python Program To Print Hollow Right Angled Triangle Pattern

Python Program To Print Hollow Right Angled Triangle Pattern

Want to know how to print hollow right angled triangle pattern in python, then you are at the right place today in this tutorial. I will show you the python program to print hollow right angled triangle pattern, so follow this tutorial till the end. 

Printing patterns in python is fun and very interesting. You must have created python programs to print pyramids and other shapes but today I will show you how to print a hollow right angled triangle pattern in python.

We will use for loop for creating pattern, no external python library is needed, just follow this tutorial till the end.

Python Code To Print Hollow Right Angled Triangle Pattern


row = 10

for i in range(row):
    for j in range(i+1):
        if j==0 or j==i or i==row-1:
            print('*',end=" ")
        else:
            print(" ", end=" ")
    print()

Above is the python program to print hollow right angled triangle pattern. Now to run this program you need to have python installed on your computer, If you don’t have then follow this guide: Install and setup python on your computer.

To run this python program, follow the below steps:

  • Create a new folder for this python project.
  • Open it in a code editor of your choice.
  • Create a python file with an ending .py extension.
  • Copy the above code and paste it in your file.
  • Open a terminal or CMD at folder location
  • And type this command python filename.py (Name of your file).

After running this program you will see a hollow right angled triangle pattern printed like below output.


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

Don’t want to create all the files and folders then you can run this program now using this online python compiler it is fast and easy.

Summary

This was the python program to print hollow right angled triangle pattern. I hope you found this tutorial helpful and useful. Do share this tutorial with your friends who might be interested in this program.

Here are some more python drawing tutorials for you:

I hope you found what you were looking for from this tutorial, and if you want more python programs and tutorials like this, do join our Telegram channel for future updates.

Thanks for reading, have a nice day 🙂