this post was submitted on 17 Jun 2023
7 points (100.0% liked)
Programming
13376 readers
1 users here now
All things programming and coding related. Subcommunity of Technology.
This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Yes - Python can be good for making a simple game like Blackjack or Tic-tac-toe or the like. It’s a great way to practice breaking down large projects into smaller manageable chunks.
It’s how I started my programming journey. I think the first game I made was the card game War. There’s not much game complexity, but you can practice with arrays/lists, shuffling/randomizing, and conditionals.