Feedback Wanted on My First Blackjack Game in Python!

0
0
Asked By CuriousCoder99 On

I've just started my journey in Python and decided to create a Blackjack game as my initial project. I'm looking for some constructive criticism on my code. Are there things I could've done better, or tips to make my coding process smoother? I feel like I could've reduced some lines of code if I had more Python knowledge, especially regarding card generation and tracking. Any advice would be greatly appreciated! You can check out my project on [GitHub](https://github.com/JTHCode/firstPythGame).

1 Answer

Answered By QuestioningQuinn On

I have a couple of questions! What happens if you draw two aces? And if someone bets a high amount, why does the game just stop? It might be better to implement an input loop until they enter a valid bet. Also, are you planning to add a split option? That would be fun!

CuriousCoder99 -

Great points! I had some trouble with the logic for the Aces, so I might have missed something there. Adding a split option is definitely on my to-do list, but I was short on time for this quick project.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.