Skip to content

Instantly share code, notes, and snippets.

@SkyLeite
Created July 12, 2016 06:21
Show Gist options
  • Select an option

  • Save SkyLeite/fa85f90511e55e9574b23487fc99dce6 to your computer and use it in GitHub Desktop.

Select an option

Save SkyLeite/fa85f90511e55e9574b23487fc99dce6 to your computer and use it in GitHub Desktop.
import os
for i in range(0,30):
print(" "*i+".__ __. __ ______ _______ .___ ___. _______ .___ ___. _______ \n"+" "*i+"| \ | | | | / || ____| | \/ | | ____|| \/ | | ____|\n"+" "*i+"| \| | | | | ,----'| |__ | \ / | | |__ | \ / | | |__ \n"+" "*i+"| . ` | | | | | | __| | |\/| | | __| | |\/| | | __| \n"+" "*i+"| |\ | | | | `----.| |____ | | | | | |____ | | | | | |____ \n"+" "*i+"|__| \__| |__| \______||_______| |__| |__| |_______||__| |__| |_______|")
os.system('cls')
for i in range(0,30):
j = 30-i
print(" "*j+".__ __. __ ______ _______ .___ ___. _______ .___ ___. _______ \n"+" "*j+"| \ | | | | / || ____| | \/ | | ____|| \/ | | ____|\n"+" "*j+"| \| | | | | ,----'| |__ | \ / | | |__ | \ / | | |__ \n"+" "*j+"| . ` | | | | | | __| | |\/| | | __| | |\/| | | __| \n"+" "*j+"| |\ | | | | `----.| |____ | | | | | |____ | | | | | |____ \n"+" "*j+"|__| \__| |__| \______||_______| |__| |__| |_______||__| |__| |_______|\n")
os.system('cls')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment