All Questions
30 questions
9
votes
3
answers
2k
views
Solver for Wordle puzzle
After a success with the Jumble puzzle solver, I am doing a Wordle puzzle solver. I know many other Wordle solvers have been posted, yet this is my original version, which emphasizes list ...
8
votes
2
answers
958
views
2D block game like Minecraft
I have been working on a 2D block game. I like the progress I am making, but I would like to improve the performance and the overall quality of the code. The code and textures are stored in my GitHub ...
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 ...
4
votes
1
answer
375
views
2D Minecraft - infinite chunk system
I am making a 2d minecraft clone for a hobby.
Here is my code:
2D_MC.py:
...
5
votes
2
answers
149
views
Playing a game of ConHex in Python
Background
ConHex is game by Michail Antonow where two players try to create a connected chain of cells from one side of the board to the other side. They do this by claiming one empty position each ...
7
votes
2
answers
844
views
Hangman game in Python with nine possible words
I'm relatively new to Python, and I've been using the language for about a month. I set out to do the Hangman game. I would like to know if there are things to improve in the code of the program I ...
5
votes
4
answers
279
views
Create a little adventure world
I have just recently picked up coding and am trying to improve my coding. I've written this bit of code to create a little adventure world. I haven't completed the code, everything runs how I want it ...
5
votes
1
answer
222
views
Hangman Game Efficiency
To put it simply, I'm making a hangman game and it works as it is, it correctly outputs what I want it to, and I have no problem with submitting it now. I only wish to make it more efficient, and I ...
5
votes
2
answers
155
views
Language skill tester using Pygame
I made this little game that tests our language skills. It uses one external module, pinyin, which can be installed via the command prompt command
...
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 ...
5
votes
2
answers
183
views
Word finder using pygame
I made a word searching app that allows the user to input words into a text box,
and parts of the word grid will be highlighted to show the location of the words.
The letters of the grid can be edited ...
6
votes
2
answers
707
views
Simple chess engine
I have programmed a chess AI in Python as a first project to learn both Python and the inner workings of a chess engine and wanted to have some input on syntax, code efficiency and any tips in general ...
7
votes
3
answers
669
views
I made a guess the number game in Python
I just started programming a week ago. Online tutorials aren't my thing, so I decided to just start projects and learn what I need for the project.
My first project is a guess the number game. The ...
7
votes
2
answers
2k
views
Go (board game) check for removed stones
Given a board state in the game of Go (19x19 grid with entries white, black, ...
3
votes
1
answer
588
views
Battle-based snake game in tkinter
Disclaimer: This code is far from complete, I am aware of issues regarding my standards of naming, my lack of comments and readability; however, I am encountering a large issue which is preventing me ...