Skip to content

Instantly share code, notes, and snippets.

@bFraley
Created September 9, 2016 17:04
Show Gist options
  • Save bFraley/6c603f7a0617c3048b4e7d25b218adf2 to your computer and use it in GitHub Desktop.
Save bFraley/6c603f7a0617c3048b4e7d25b218adf2 to your computer and use it in GitHub Desktop.
ascii logo in python
# 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