Left triangle patterns in python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Left Trianlge Type -1 (Source Code) for x in range(1,7): for y in range(1,x): print(“*”,end=””) print(“”) Output *************** Left Trianlge Type -2 (Source Code) for x in range(1,7): for y in range(1,x): print(y,end=””) print(“”) Output 112123123412345 Left Trianlge Type -3 (Source Code) for x in range(1,6): for y in range(0,x): print(x,end=””) print(“”) Output 122333444455555 View All Python Programs