Inverted solid right triangle in python assignment expert

Inverted Solid Right Triangle

This Program name is Inverted Solid Right Triangle. Write a Python program to Inverted Solid Right Triangle, it has two test cases

The below link contains Inverted Solid Right Triangle question, explanation and test cases

//drive.google.com/file/d/1YFU7WKt1VLzQJ6HEmvwToqs3_quADbZ8/view?usp=sharing

We need exact output when the code was run

Inverted Solid Right Triangle

Given an integer number 

N as input. Write a program to print the right-angled triangular pattern of N lines as shown below.

Note: There is a space after each asterisk [*] character.

Input

The first line of input is an integer 

N.

Explanation

In the given example the solid right angled triangle of side 

4. Therefore, the output should be

* * * * 
  * * * 
    * * 
      *
Sample Input 1
4
Sample Output 1
* * * * 
  * * * 
    * * 
      *
Sample Input 2
5
Sample Output 2
* * * * * 
  * * * * 
    * * * 
      * * 
        *

def invertedTriangle[rows]:
 
    i = rows
    while i >= 1:
        j = rows
        while j > i:
           
            print[' ', end=' ']
            j -= 1
        k = 1
        while k 

Chủ Đề