*
#
@
-
for i in range(5): print("*" * i)
Output:
* ** *** ****
for i in range(5, 0, -1): print("#" * i)
##### #### ### ## #
Create an ASCII art generator that asks the user for:
Print a pyramid with those choices