Skip to content

Latest commit

 

History

History
60 lines (37 loc) · 1.64 KB

File metadata and controls

60 lines (37 loc) · 1.64 KB

Blackjack with graphics user interface

Summary

Blackjack game for one player.

Code written in python3 with graphics user interface (GUI) using Tkinter.

Blackjack

Blackjack is a casino banking game.

To learn more about this game : see https://en.wikipedia.org/wiki/Blackjack

Repository content

To play the game, save all files from blackjack folder in the same directory.

Tkinter interface

Interface

startGUI

Gameplay

Two buttons : hit and stand

Rules

The rules of Blackjack can be displayed thanks to the menu Rules from the GUI.

Example of game

There are four steps :

  • Initial deal
  • Player action
  • Dealer's hand revealed
  • Bets settled

player_action bets_settled

Tasks list

  • Implement python script
  • Document code