Thank you for looking at my issue. I am a beginner in school and we have an excercise that asks us to write a program that uses nestes loos to draw this patter:
*******
******
*****
****
***
**
*
and
**
* *
* *
* *
* *
* *
I am not looking for anyone to do this for me, I actually do want to learn what I am missing.
So I figured out if I us this code
def main():
start = 7
for r in range(start):
for c in range(r):
print('*', end='')
print('*')
main()
I can get a pyramid like
*
**
***
****
*****
******
*******
What am I missing there? If I learn I think I can figure out the second one. Thanks in advance for any help.