Created
July 12, 2016 06:20
-
-
Save SkyLeite/c9ec6ecc696d67942ca0df7e6bc9267e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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