Python

Pattern printing Floyd Triangle in Python (Ascending and Descending Orders)1 min read

Write a program to print Floyd’s triangle number pattern in python language( Ascending and Descending Orders).

There are you will learn how to print Floyd’s triangle number pattern by using the for loop.

Program to print Floyd’s triangle




Python program: Write a program to print Floyd’s triangle number pattern in python language

Output:

Program to print Reverse Floyd’s triangle

Python program: Write a program to enter the number and print the floyd’s triangle in decreasing order.

Output:

Leave a Comment