for i in range(3):
for j in range(3-i):
print("*", end=" ")
print("")
Use the code snippet above to write a program that uses looping to output the following shape:
THIRD
*
* *
* * *
* * * *
* * * * *
* * * * * *
* * * * * * *
* * * * * * * *
* * * * * * * * *
Answers
Answered by
0
Answer:
.answered see above in the photograph
Attachments:
Similar questions