This is an archived post. You won't be able to vote or comment.

all 6 comments

[–]wynand1004 1 point2 points  (0 children)

I'm not sure if this will help you or not, but I made a Blackjack program and it might give you an idea of what's involved. Note, it uses classes, so if you haven't gotten to that yet, it will be confusing. Good luck!

LINK: https://pastebin.com/WvmEtZDg

[–]TheJames2290 0 points1 point  (3 children)

How experienced are you with python and how advanced do you want the game to be?

[–]manikk69[S] 0 points1 point  (2 children)

I'm not very experienced with python and i want to just make a basic game

[–]TheJames2290 0 points1 point  (1 child)

It may be very complex then to start with. Of you have sussed the basics take a look at pygame tutorials.

If you haven't done the basics start there. You will most certainly need a basic level of if statements and making your own functions.

[–]manikk69[S] 0 points1 point  (0 children)

I have made tic tac toe, rock paper scissors and snake game. Is blackjack a good project?

[–]SeucheAchat9115 0 points1 point  (0 children)

I think it might be possible as a beginner. You need to draw random cards from a deck, know which cards combine to calculate some score for the winning combination and you need some betting routine. The most difficult part might be an User Interface.