Question: Remove spaces from the stars I did this code: for i in range(10, 0, -1): for j in range(0, 10-i): print(end=) for j in range(0,
Remove spaces from the stars
I did this code: for i in range(10, 0, -1): for j in range(0, 10-i): print(end="") for j in range(0, i): print("*",end="") print () However, I don't need spaces between the stars. How can I fix this? I need it to look like the picture which I am attaching. I will really appreciate all of your help! Thank you. *
Step by Step Solution
There are 3 Steps involved in it
for i in range10 ... View full answer
Get step-by-step solutions from verified subject matter experts
