Print Right Angle Triangle pattern with fixed alphabet symbol in every row in Python 30 October 2023 by Souradeep Chatterjee To print Right Angle Triangle pattern with fixed alphabet symbol in every row in Python Code: n = int(input('Enter No Of Rows:')) for i in range(n): print((chr(65 + i) + ' ') * (i + 1))