/BlackJack

This is a simple Python project on the card game named "BlackJack". It is a game between the Dealer and the Player, where both the Dealer and the Player take 2 cards. Both the cards of the player are shown but in case of dealer, only one card is shown and the other one is hidden from the player. IMP: the value of Jack, Queen and King is 10, and the value of other cards are their respective numbers, e.g. Value of hearts of 2 is 2 and value of diamond of 10 is 10. But the value of Ace depends on the user, it can either be a 1 or a 11, but , all the aces will have same value, e.g. if the player has 2 aces, both can either have a value of 11 or a value of 1. They can't have value of one card as 1 and the other has 11. Keeping these rules in mind, player calculates the score of his card. Now, it is upto the player to choose one of the two options, HIT or SHOW. If the player is not satisfied with his total score, then he can choose HIT, which will provide him with one more card, but if he chooses SHOW, then the other hidden card of the dealer will be shown and then one who gets the greater score wins.

No issues in this repository yet.