Skip to content

Instantly share code, notes, and snippets.

@orkaa
Created September 21, 2015 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orkaa/1ac767546ddf8733d8bc to your computer and use it in GitHub Desktop.
Save orkaa/1ac767546ddf8733d8bc to your computer and use it in GitHub Desktop.
for x in range(1,8):
print "*" * x + "o" * (15 - x*2) + "*" * x
for x in range(7,0,-1):
print "*" * x + "o" * (15 - x*2) + "*" * x
*ooooooooooooo*
**ooooooooooo**
***ooooooooo***
****ooooooo****
*****ooooo*****
******ooo******
*******o*******
*******o*******
******ooo******
*****ooooo*****
****ooooooo****
***ooooooooo***
**ooooooooooo**
*ooooooooooooo*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment