Respuesta :
Answer: print("THIRD")
for i in range(10):
for j in range(10-i):
print(" ", end=" ")
for j in range(i):
print("*", end=" ")
print("")
Explanation:
You're Welcome yall
print("THIRD")
for i in range(10):
for j in range(10-i):
print(" ", end=" ")
for j in range(i):
print("*", end=" ")
print("")
In this exercise, using the knowledge of computational language in python, we have that this code will be written as:
The code is in the attached image.
We can write the python as:
print("THIRD")
for i in range(10):
for j in range(10-i):
print(" ", end=" ")
for j in range(i):
print("*", end=" ")
print("")
See more about python at brainly.com/question/18502436
