Skip to content

Instantly share code, notes, and snippets.

@cbonesana
Created December 19, 2017 14:24
Show Gist options
  • Save cbonesana/82be8d3a007555b55fc8ccd3ceb81339 to your computer and use it in GitHub Desktop.
Save cbonesana/82be8d3a007555b55fc8ccd3ceb81339 to your computer and use it in GitHub Desktop.
A beautiful Christmas Tree for you holidays!
# *
# * + *
# * +++ *
# * +++++ *
# * +++++++ *
# * +++++++++ *
# 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