Answer to Question #219135 in Python for binnu

Question #219135

Hollow Right Triangle

Given an integer number

N as input. Write a program to print the hollow 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 hollow right angled triangle of side

4. Therefore, the output should be

* * * *

* *

* *

*


Sample Input 1

4

Sample Output 1

* * * *

* *

* *

*

Sample Input 2

6

Sample Output 2

* * * * * *

* *

* *

* *

* *

*




1
Expert's answer
2021-07-21T16:37:27-0400
N = int(input())

first_line = '* ' * N
middle_line = '* ' * 2
last_line = '* '


output = first_line
for i in range(N - 2):
    output += '\n' + middle_line
output += '\n' + last_line

print(output)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS