diff options
Diffstat (limited to 'wk6/pset/sentimental-mario-more')
-rw-r--r-- | wk6/pset/sentimental-mario-more/mario.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/wk6/pset/sentimental-mario-more/mario.py b/wk6/pset/sentimental-mario-more/mario.py index 64c08b9..aaded5a 100644 --- a/wk6/pset/sentimental-mario-more/mario.py +++ b/wk6/pset/sentimental-mario-more/mario.py @@ -1,10 +1,3 @@ -# import get_int -# get input using get_int -# make sure the input is between 1 and 8 -# print the pyramids -# for i in range(input - 1): - # print(" " * (input - i - 1), "#" * i + 1) - from cs50 import get_int @@ -19,3 +12,10 @@ for i in range(size): print(" ", end='') print("#" * (i + 1)) + +# import get_int +# get input using get_int +# make sure the input is between 1 and 8 +# print the pyramids +# for i in range(input - 1): +# print(" " * (input - i - 1), "#" * i + 1) |