/BlackJack

Simple Python Program for BlackJack

Primary LanguagePython

Workflow of project:

- Cards suits: Heart,spades,Diamond,Clubs . 
- Each has 13 cards,their ranks and their values : ace,1-10,King,Jacks,Queen
- Deck class has all 52 cards and making it as a list.
- This will be shuffled throught shuffle() from random library as method call.
- The card will be dealt as it will popped from the list and be used by the player.