Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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