You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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()
#1011
Open
ken-opiyo opened this issue
Feb 21, 2024
· 0 comments
The text was updated successfully, but these errors were encountered:
ken-opiyo
changed the title
Python program to display analogue clock
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()
Feb 21, 2024
Darkness1805
added a commit
to Darkness1805/Python-100-Days
that referenced
this issue
Feb 23, 2024
No description provided.
The text was updated successfully, but these errors were encountered: