Skip to content

Commit

Permalink
Add ascii art
Browse files Browse the repository at this point in the history
  • Loading branch information
pamims committed Jun 4, 2022
1 parent fb2537e commit c508f4f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Day011/BlackJack/ascii_art.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
blackjack_art = """
.------. _ _ _ _ _
|A_ _ |. | | | | | | (_) | |
|( \/ ).-----. | |__ | | __ _ ___| | ___ __ _ ___| | __
| \ /|K /\ | | '_ \| |/ _` |/ __| |/ / |/ _` |/ __| |/ /
| \/ | / \ | | |_) | | (_| | (__| <| | (_| | (__| <
`-----| \ / | |_.__/|_|\__,_|\___|_|\_\ |\__,_|\___|_|\_\\
| \/ K| _/ |
`------' |__/
""";
2 changes: 2 additions & 0 deletions Day011/BlackJack/main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from ascii_art import blackjack_art
from blackjack import begin_round, get_player_decision, dealer_plays, end_round


print(blackjack_art);
print("\nWelcome to BlackJack!\n");

def get_game_over():
Expand Down

0 comments on commit c508f4f

Please sign in to comment.