wap in python to print the pattern
Attachments:
Answers
Answered by
1
Answer:
here's the answer
Explanation:
hope this helps u
Attachments:
Answered by
7
Answer:
rows=3
for i in range(rows):
print(" "*(rows-i-1)+"* "*(i+1))
for j in range(rows-1,0,-1):
print(' '*(rows-j)+'* '*(j))
✨
Attachments:
Similar questions