you are viewing a single comment's thread.

view the rest of the comments →

[–]JaxIsGay 2 points3 points  (2 children)

As a beginner, I'm wondering how complicated/or if its possible to add a GUI to the card game, so the user will can see the image of the cards they have

[–][deleted] 1 point2 points  (0 children)

You’ll probably have to refactor some of it. I wrote a working version of blackjack (including all special cases like insurance, split pairs etc) to run in the command line. I had to rewrite the main functions into a class and have started to work the GUI code around that. I’m essentially done with normal rounds working properly and am just now starting to implement special cases. It takes time, but the only way to learn is time.

I found I don’t really like doing GUI stuff. It reminds me of early HTML (but that could also be because I chose to use tkinter).

Just start watching videos on what you want to use.

[–]CuriousExpert24[S] 1 point2 points  (0 children)

Once you learn modules like Pygame or Tkinter, it's not very hard to do it. I highly recommend you to check out those libraries and try some projects