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 

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

1 Expert Approved Answer
Step: 1 Unlock

for i in range10 ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!