Computer Science, asked by ProBroJokesMan, 4 months ago

Python for LOOP

Print the pattern using for loop command in python

Attachments:

Answers

Answered by seemagupta1431976
0

Answer:

THIS IS THE ASNWER

Explanation:

rows = int(input("Enter the number of rows: "))

# Outer loop will print number of rows.

for i in range(rows+1):

# Inner loop will print the value of i after each iteration.

for j in range(i):

print(i, end=" ") # print number.

# line after each row to display pattern correctly.

print(" ")

Similar questions