Hướng dẫn solid right angled triangle-3 in python assignment expert - tam giác vuông góc vuông-3 trong chuyên gia gán python

Hình tam giác rắn phải đảo ngược

Tên chương trình này được đảo ngược hình tam giác phải. Viết một chương trình Python để đảo ngược tam giác phải, nó có hai trường hợp thử nghiệm

Liên kết dưới đây chứa các trường hợp, giải thích và các trường hợp thử nghiệm bên dưới

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

Chúng tôi cần đầu ra chính xác khi mã được chạy

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 

Bài Viết Liên Quan

Chủ Đề