BlackJack

BlackJack

This is BlackJack game versus the PC (Deployed with the help of a low-code platform, Anvil Framework). Your goal is to beat the computer.

To play the game you can scroll down into the Play Here section or download all the python files in the game RESPOSITORY and execute it in your personal code editor.
After the game deployment, you can access its rules.

Play Here

Game Rules

  • The dealer will give you 2 cards and will take 2.
  • You will know both your cards but only one of the computers.
  • The goal is to have the sum of your cards the closest (or equal) to 21, but not over it.
  • Each card has it's own numerical value. Regarding the cards that are letters they have other values:
    • A = 1 or 11. Depending on the final Sum. Always avoiding getting over 21.
    • J = 10.
    • Q = 10.
    • K = 10.
  • With your 2 cards in hand and knowing one of the dealers you can choose to get or not another card.
  • You can continue to pick cards until your hand exceeds 21 points
  • How to win the game:
    • If the sum of your cards is 21. If you have only two cards you will win with a blackjack
    • If comparing to the dealers cards, your sum is closer to 21, without getting over.
  • How to lose the game:
    • If the sum of your cards is over 21.
    • If comparing to the dealers cards, its sum is closest to 21 comparing to yours.