Skip to content

Commit 32edaca

Browse files
Will BergWill Berg
Will Berg
authored and
Will Berg
committed
Update Blackjack ReadMe to reflect gameplay.
1 parent 042819c commit 32edaca

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

BlackJackGame/ReadMe.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
# Black Jack Game in Python
22

3-
A simple game of 21 made for Python
3+
A simplified game of 21 made for Python!
4+
5+
## Card Values
6+
Suits do not affect card values.
7+
8+
2 - 10 all are the same value as the card name.
9+
J, Q, and K are all worth 10.
10+
Aces: If adding 11 would make the score go over 21, then the ace is worth 1. Otherwise, it is worth 11.
11+
12+
## Gameplay
13+
Simply run the script to begin playing. The hand begins with both the player and dealer receiving two cards. The player only sees one of the dealer's cards at the start. The player goes first, choosing to Hit (Press 1) or Stay (Press 0). If the player recieves more than 21 points then they are Bust and have lost the hand. After the player selects Stay, it is then the dealers turn. The dealer Hits until they either receive a higher score than the player (player loses) or Bust (player wins).
14+
15+
## Blackjack
16+
A player gets a 'Blackjack' if they are dealt a card worth 10 and an Ace at the beginning of the hand. This automatically wins the game.
17+
18+
19+
**Note that for the purpose of this script is to allow the user to play a simple hand of Blackjack without some of the higher level parts of the game like betting or splitting doubles. All ties go to the player in this version of the game.
420

521
## Demo
622

0 commit comments

Comments
 (0)