coding practice-8

write a program to print the right angle traingle of  N lines 


        n=int(input())

        for i in range(n):

                print("* " * (i+1))

Comments