Skip to content

Instantly share code, notes, and snippets.

@Kwpolska
Created September 12, 2015 08:08
Show Gist options
  • Save Kwpolska/da67e2e7dff92f182249 to your computer and use it in GitHub Desktop.
Save Kwpolska/da67e2e7dff92f182249 to your computer and use it in GitHub Desktop.
MIN_STARS = 1
MAX_STARS = 12
for stars in range(MIN_STARS, MAX_STARS + 1):
spaces = MAX_STARS - stars
print(' ' * spaces + '*' * stars)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment