Created
September 9, 2016 17:04
-
-
Save bFraley/6c603f7a0617c3048b4e7d25b218adf2 to your computer and use it in GitHub Desktop.
ascii logo in python
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
| # Logo is a list of lines used in print_logo below. | |
| logo = [ | |
| ' _ _ _ ', | |
| '| | _____ ___ __ (_)_ __ (_) __ _ ', | |
| '| |/ _ \ \/ / `_ \| | `_ \ | |/ _` |', | |
| '| | __/> <| | | | | | | || | (_| |', | |
| '|_|\___/_/\_\_| |_|_|_| |_|/ |\__,_|', | |
| ' |__/' | |
| ] | |
| # Printing helper functions | |
| # ------------------------- | |
| # Print game logo. | |
| def print_logo(): | |
| os.system("clear") | |
| print('\n') | |
| for line in logo: | |
| print(line) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment