Computer Science, asked by archismanchakraborty, 5 months ago

Pattern program in python using Nested Loop:
1
23
456
78910
Pls help me with this

Answers

Answered by bhasvit18
2

Answer:

# 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:

mark it brilliant

Similar questions