Answer to Question #101694 in Python for Justin

Question #101694
Use the code snippet above to write a program that uses looping to output the following shape:


FIRST

*

* *

* * *

* * * *

* * * * *

* * * * * *

* * * * * * *

* * * * * * * *

* * * * * * * * *
1
Expert's answer
2020-01-24T07:40:07-0500
s = "*"
for i in range(1, 10):
    print(s * i)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS