Computer Science, asked by ishitak152, 10 months ago

Write a program to read a string and print the string in pyramid form eg.if user input'python'then output will be.
P
Py
Pyth
Pytho
Python

Answers

Answered by Tigresses
0

Simple pyramid pattern

# Python 3.x code to demonstrate star pattern

# Function to demonstrate printing pattern

def pypart(n):

# outer loop to handle number of rows

# n in this case

for i in range(0, n):

# inner loop to handle number of columns

# values changing acc. to outer loop

for j in range(0, i+1):

# printing stars

print("* ",end="")

# ending line after each row

print("\r")

# Driver Code

n = 5

pypart(n)

Explanation:

output:-

Attachments:
Similar questions