A simple command-line Blackjack game using Python implementing Object Oriented Programming concepts.
- The deck is unlimited in size.
- There are no jokers.
- The Jack/Queen/King all count as 10
- cards = [11, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10]
- The cards in the list have equal probability of being drawn.
- Cards are not removed from the deck as they are drawn.