Blackjack Game Final Version
This is the final version of my Blackjack game. The major difference between the final version and an earlier version is the Ace card. In the final version, the Ace card can either have a value of 1 or 10. This depends on the value of the hand. Below is the code used for the Ace card: if 'A' in c_ranks and self.hand_value +10 <= 21: self.hand_value = sum(h_val) + 10 else: self.hand_value = sum(h_val) You can see the final version in the video. Here is the grading rubric which describe how the game was graded: You must implement the rules of Blackjack specified in this description. • 1 pt - The program displays the title "Blackjack" on the canvas. • 1 pt - The program displays 3 buttons ("Deal", "Hit" and "Stand") in the control area. • 2 pts - The program graphically displays the player's hand using card images. (1 pt if text is disp...