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
5. Therefore, the output should be
* * * * * * * * * *
1
Expert's answer
2021-09-15T00:10:51-0400
N=int(input("Enter the right-angled triangle: "))
s=[]foriinrange(0,2*N): s.append(' ')
foriinrange(0,(len(s)//2)-1):
s[(len(s)-2)-(2*i-1)] = '*'
t=""for j inrange(0, len(s)):
t = t+s[j]print(t)
"assignmentexpert.com" is professional group of people in Math subjects! They did assignments in very high level of mathematical modelling in the best quality. Thanks a lot
Comments