Created
July 12, 2016 06:21
-
-
Save SkyLeite/fa85f90511e55e9574b23487fc99dce6 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 | |
| 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