Trying to build pyramids in Python, something similar to the following
****
***
**
* *
**
***
****
Please note there are TWO stars on line 4. Currently all I have is this:
for stars in range(4,0,-1):
print("*"*stars)
Which yields the following:
****
***
**
*
Please advise.