Blackjack game for one player.
Code written in python3 with graphics user interface (GUI) using Tkinter.
Blackjack is a casino banking game.
To learn more about this game : see https://en.wikipedia.org/wiki/Blackjack
To play the game, save all files from blackjack folder in the same directory.
- main.py : main Python script
- blackjack_functions.py: Python module
- blackjack_classes.py: Python module
- game.py: Python module
- help_GUI.py: Python module
- Images folder :
- playing cards pictures (in .gif) for GUI from https://www.apprendre-en-ligne.net/pj/blackjack/index.html
- bankruptcy.gif from https://pixabay.com/illustrations/bankrupt-broke-failure-bankruptcy-2340287/
- rules_eng.txt : plain text document that contains the rules and explains how to play the game
- about.txt : plain text document that contains copyright and license information
Two buttons : hit and stand
The rules of Blackjack can be displayed thanks to the menu Rules from the GUI.
There are four steps :
- Initial deal
- Player action
- Dealer's hand revealed
- Bets settled
- Implement python script
- Document code