This is a simple Python program that prints an inverted right-angle triangle pattern using asterisks (*). The pattern begins with a full row of stars and reduces by one star per row. The triangle is ...
base = int(input("Enter the base of the Rigth Angle Triangle: ")) height = int(input("Enter the height of the Rigth Angle Triangle: ")) ...