Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to make a half pyramid in python

row = int(input("Enter total row = "))
for x in range(1, row+1):
    print(x*"* ")
Source by www.programiz.com #
 
PREVIOUS NEXT
Tagged: #pyramid #python
ADD COMMENT
Topic
Name
6+9 =