Use this code snippet
for i in range(3):
for j in range(3-i):
print("*", end=" ")
print("")
to make this...
THIRD
*
* *
* * *
* * * *
* * * * *
* * * * * *
* * * * * * *
* * * * * * * *
* * * * * * * * *
May need more than the two for statements, please respond fast!!!
Please fix the following input errors: