Python-100-Days icon indicating copy to clipboard operation
Python-100-Days copied to clipboard

Python program to display Pyramid Pattern n=5 # number of rows # outer loop handling the number of rows for x in range(0,n): # inner loop handling the number of columns # values change according toouter loop for y in range(1,x+1): # displays the star in pyramid pattern print("*",end=" ") print()

Open ken-opiyo opened this issue 6 months ago • 0 comments

ken-opiyo avatar Feb 21 '24 09:02 ken-opiyo