Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 482 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 482 Bytes

Blackjack Game ♠ ❤ ♣ ♦

Submitted by: Murriel Rodrigues | April 02, 2023

A simple command-line Blackjack game using Python implementing Object Oriented Programming concepts.

House Rules

  1. The deck is unlimited in size.
  2. There are no jokers.
  3. The Jack/Queen/King all count as 10
  4. cards = [11, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10]
  5. The cards in the list have equal probability of being drawn.
  6. Cards are not removed from the deck as they are drawn.