for i in range(3):
for j in range(3-i):
print("*", end=" ")
print("")
Question 4 Instructions
Use the code snippet above to write a program that uses looping to output the following shape:
FOURTH
* * * * * * * * * *
* * * * * * * * *
* * * * * * * *
* * * * * * *
* * * * * *
* * * * *
* * * *
* * *
* *
*
Please fix the following input errors: