Answer to Question #219981 in Python for janardhan

Question #219981

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.


1
Expert's answer
2021-07-24T07:05:59-0400
#Python 3.9.5

N=int(input("Enter number of lines: "))

for i in range(N):
    for j in range(i+1):
        if j==0 or j==i or i==N-1:
            print('*',end=" ")
        else:
            print(" ", end=" ")
    print()

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