diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-04 07:41:35 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-04 07:41:35 +0000 |
commit | 8c2da4704cf54be51f7932dc608c44b73e012f4f (patch) | |
tree | a1f23f23cc800c896997488541f5c550adee453d | |
parent | 19fb7a503dcc7a0978b19804e5f8fc9d1d11f9eb (diff) |
Sat, May 4, 2024, 12:41 AM -07:00
-rw-r--r-- | wk6/pset/sentimental-mario-more/mario.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/wk6/pset/sentimental-mario-more/mario.py b/wk6/pset/sentimental-mario-more/mario.py index d2d1663..64c08b9 100644 --- a/wk6/pset/sentimental-mario-more/mario.py +++ b/wk6/pset/sentimental-mario-more/mario.py @@ -17,6 +17,5 @@ for i in range(size): print(' ' * (size - i - 1), end='') print("#" * (i + 1), end='') print(" ", end='') - print("#" * (i + 1), end='') - print(" " * (size - i - 1)) + print("#" * (i + 1)) |