Answer to Question #283733 in Python for Bannu

Question #283733

Hollow Right Triangle - 2



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 5



Therefore, the output should be


*


* *


* *


* *


* * * * *

1
Expert's answer
2021-12-30T07:13:55-0500

n = 5

if n > 1:

  print('*')

for i in range(n-2):

  print('* ' + (' '*(2*(n+i-5))) + '* ')

print('* '*n)



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