Created
December 19, 2017 14:24
-
-
Save cbonesana/82be8d3a007555b55fc8ccd3ceb81339 to your computer and use it in GitHub Desktop.
A beautiful Christmas Tree for you holidays!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# * | |
# * + * | |
# * +++ * | |
# * +++++ * | |
# * +++++++ * | |
# * +++++++++ * | |
# M | |
def holiday(n): | |
print(' ' * (n + 2) + '*') | |
for i in range(n): | |
print(' ' * (n - (i + 1)), | |
'*', '+' * (2 * i + 1), | |
'*') | |
print(' ' * (n+2) + 'M') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment