Nice work! Now let's get creative with print(). You can use it to create ASCII art — patterns made from text characters.
For example:
This prints a little triangle! Use spaces and characters to create patterns.
print(' * ')
print(' *** ')
print('*****')
Run your code
*
***
*****
...