7 Program to print Right Angle Triangle in Python Atharva Satyendra Agrawal January 27, 2020 Atharva Satyendra Agrawal Required Output: Program: ?star = int(input("Enter any number:")) for i in range(1,star+1): while(i>0): print("*",end="") i=i-1 print() Tweet Share Share Share Related Post 27 Program to check whether 2 no's are equal or not in Python Program: #program to check whether 2 no's are equal or not x=int(input("Enter value of x:")) 34 Program to demonstrate While-Else Loop in Python Program: #program for while-else x=1 while(x<=5): print("hello") &nbs42 Program to demonstrate nested list in Python Program: x=[[10,20,30],[40,50,60],[70,80,90]] print(x) print(type(x)) print(len(x)) print(x62 Program to demonstrate Boolean function in Python Program: #Boolean function:function which returns either True/false x=20 y=10 def f1(): &nb