How to print reversed right angle triangle in Python?
Code: rows = int(input("Enter number of rows: ")) for i in range(rows, 0, -1): for j in range(1, i+1): print("*", end = ' ') print('\r') //output:
Coder's Space
How to print reversed right angle triangle in Python?
Code: rows = int(input("Enter number of rows: ")) for i in range(rows, 0, -1): for j in range(1, i+1): print("*", end = ' ') print('\r') //output: