please give an example.....
Attachments:
Answers
Answered by
5
Answer:
okay
Explanation:
Example -
# This is the example of print simple pyramid pattern.
n = int(input("Enter the number of rows"))
# outer loop to handle number of rows.
for i in range(0, n):
# inner loop to handle number of columns.
# values is changing according to outer loop.
for j in range(0, i + 1):
# printing stars.
Answered by
2
Answer:
I don't have much time plzzz apko aata ho to mere dusre Question pe answer mardo
Similar questions