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
4. Therefore, the output should be
* * * *
* * *
* *
*
1
Expert's answer
2021-09-13T18:30:20-0400
rows = int(input("Enter the number of rows: "))
for i in range(rows, 0, -1):
print(" "*(rows-i) ,end="")
for j in range(0, i ):
print("*", end=" ")
print("")
Finding a professional expert in "partial differential equations" in the advanced level is difficult.
You can find this expert in "Assignmentexpert.com" with confidence.
Exceptional experts! I appreciate your help. God bless you!
Comments