Computer Science, asked by stormfly943, 11 months ago

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 rkub618079
0

Explanation:

diydjyshtsulskyraiyaoeaoLhayrlajtlausdjgLhLyrapualurayralyieitapryaujaahrafsjgzjgkxxcczjzkxkxjzxccvcclxk(^^)(^^):'(:-(:-*:'((^^):'((^^):O;-):O:-):-):O:O:-*:-*:-*:O:O:'(

Answered by mirandacarolyn
0

Answer:

Explanation:

print("THIRD")

for i in range(9):

   for n in range((9-i)*2):

       print(" ", end="")

   for j in range(1+i):

       print("*", end=" ")

   print("")

Similar questions