All Questions
48 questions
8
votes
2
answers
964
views
Python OOP game of Hangman
I am currently learning object oriented programming in Python.
I attempted writing an OOP program for hangman, and while the program is functional, I just ended up writing a very long class method. ...
6
votes
4
answers
196
views
Deck Value Bet-Like Game
I have just gotten into Object Oriented Programming and I've been practicing it through Python. But I think I still haven't clearly grasped how it should be used effectively. I've created a game Using ...
3
votes
2
answers
188
views
BlackJack in python
I began creating blackjack in python; however, I'm looking to simulate it, so I'm thinking I'm going to need to optimize it so that I don't just leave my computer running for three hours waiting for ...
1
vote
0
answers
119
views
Text-Based Multiplayer RPG Engine using Flask & React
As a final project for a software engineering bootcamp, I decided to make a text-based multiplayer RPG game engine. Using Python, Flask, & Flask-SocketIO for the backend and React & TypeScript ...
2
votes
2
answers
156
views
OOP tic-tac-toe
I have created my first personal project - tic tac toe game. It is my first time approaching code using Object-Oriented paradigm and I would like to get feedback on it and on aspects where I can ...
0
votes
2
answers
450
views
OOP Tic Tac Toe Game
I have built a project OOP Tic Tac Toe. I am beginner-intermediate developer. Can you tell me what I can improve, what I did wrong and what to look up to? This is my first OOP project. I'm happy that ...
1
vote
2
answers
92
views
Object Oriented Hangman in Python Version 2.0
I am looking for as much criticism as possible. Specifically I am trying to institute BEST PRACTICES for OOP and game design. Enjoy!
Github hangman repository
Each Class is in a separate file and ...
3
votes
1
answer
223
views
pygame with infinitely scrolling background - handling of sprites movement
In my current project, I try to implement the basic logic of the game "Vampire Survival" (Little impression of the first level can be seen in this video on Youtube).
Question
I want to know, ...
7
votes
2
answers
342
views
ASCII-based OOP blackjack game in Python
I'm new to programming and have been teaching myself to code for about 6 months. Since I have no one to ask about any of coding-related questions, I may have developed bad habits in the meantime, but ...
3
votes
1
answer
340
views
Terminal python tic-tac-toe game
As someone that started to learn basic python programming, I decided to make a Python tic-tac-toe game for the terminal, to develop my OOP skills.
I would like to know if my code has a lot of ...
4
votes
1
answer
213
views
class that handles the rpg game map
I created a class to handle maps in my RPG game, before it became a class this was a collection of functions I created, but I thought it could be used as a class. although this code is working but i ...
3
votes
1
answer
188
views
Made a simple platformer game in arcade library of Python
This is a simple game I am making in the arcade library of Python. I am quite new to object-oriented programming as well as game development. I feel like a lot of the code is inefficient, so I was ...
3
votes
1
answer
347
views
Python Blackjack
A simple terminal blackjack game written in Python.
Follows basic blackjack rules: Blackjack pays 3 to 1, Hit, Stick, Double Down and Splits
Dealer hits until 17
Keeps track of some data
Wrote it for ...
9
votes
4
answers
3k
views
Python text-based Tic Tac Toe
I created a simple text-based Tic Tac Toe game in Python using OOP. Currently the computer moves are completely random - I plan to add some sort of algorithm later (no idea how to do that yet though)
...
5
votes
1
answer
139
views
I wrote a Black Jack game in Python and would love some feedback -
this is my first code review post :) So I wrote this Black Jack game as part of an online Python course and would love some feedback about my coding style and whether or not I have correctly used a '...