Blackjack Python

Hey, this is something that I have been working on for a little while now and I wanted to share it with you guys and see how you like it!! Please comment on anything that I could do better. Thanks P.S stake means bet and it cant be higher than the bank. If you aren’t familiar with Blackjack, a soft hand is a hand with an Ace that can count as 1 or 11, without the total hand value exceeding 21. A pair is self-explanatory, and a hard hand is basically everything else, reduced to a total hand value.

This is a GUI version of the game blackjack, written in Python and Pygame. It is easy to play, and can be very fast-paced.

A version of the game blackjack. Has all the basic blackjack functions except for split. The code is very well documented, and a design doc is included. This program won the High School programming competition at Dalhousie university!

Changes

Edited simple Blackjack game in Python 3.4. Blackjack game in Python 2.7. Simple Blackjack game in Python. Python 3.6.1 Linux - Blackjack game. Free slots games. Increase chips in Blackjack in Python. Ask Question Asked 1 year, 11 months ago. Active 1 year, 5 months ago. Viewed 490 times -2. In an example in class we made a.

Links

Blackjack Python Game

Github
Home Page
http://sourceforge.net/projects/flumblackjack/

Blackjack Secret Code

Releases

Blackjack Python Simulator

Pygame.org account Comments

Blackjack Python Project

  • John L 2018-07-09 16:48:09.456510

    I can't get this to run. I get the following error: C:UsersjohnDesktopblackjackblackjack>python blackjack.py File 'blackjack.py', line 42 except pygame.error, message: ^ SyntaxError: invalid syntax
  • John L 2018-07-09 16:58:06.902362

    If anyone else sees this, this code is for Python 2. You need to change to except pygame.error as message: , update print statements to Python 3, and change system exit to raise SystemExit(message)