All Questions
157 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 ...
9
votes
7
answers
1k
views
Rudimentary black jack game implementation
I started the 100 Days of Code: The Complete Python Bootcamp about a week ago. I finished day 11, and I wrote a rudimentary blackjack game. I'm just looking for some advise on how I did.
Am I showing ...
3
votes
1
answer
138
views
Simple Tic-tac-toe in Python
I am a beginner programmer who coded a simple Tic-tac-toe in Python for practice. Any feedback, especially regarding best practices and tidying up the code, is appreciated.
...
5
votes
1
answer
134
views
guess-the-number game
I'm a total Python beginner and made a number guessing game as first project. The user has to guess the number the computer is thinking of. Please give me feedback!
...
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 ...
11
votes
3
answers
6k
views
Spin the wheel game
I'm new to Python and coded this spin-the-wheel game where the user can bet on each spin of the wheel and either double their money, 1.5x their money, lose their money or keep it.
It all seems to be ...
9
votes
2
answers
903
views
Simulation of hero vs monster
I fairly started coding no more than 2 weeks now; not even for long, and a thread inspired me to make a random back-to-forth game between a Hero and a Monster where it randomly choose a certain number ...
9
votes
1
answer
1k
views
A Text-Based Game
The following code is a simple text-based RPG game where you can move between rooms and fight with monsters until you defeat the boss.
...
3
votes
4
answers
279
views
simple Rock, paper, scissors game
I just recently started learning how to program and how to use python and after watching a few courses I made a simple Rock paper scissors game where basically the script randomly chooses Rock, paper ...
1
vote
1
answer
163
views
Simple Blackjack game
This is my simple Blackjack game made in Python.
I would love some feedback to write better code.
...
4
votes
2
answers
901
views
A simple spaceship game
How could I improve this code? It's a little game. If you run it, instructions will appear.
In particular, I'd like to know whether I can
make it considerably shorter
any trick :) ?
whether I can get ...
4
votes
2
answers
1k
views
Battle terminal-based game
I'm new to learning OOP in python and played around with it, making this quick battle terminal based game-ish, but I'm wondering how I can optimize this to maybe less lines of code and just overall ...
3
votes
2
answers
520
views
Python random number guessing game
I've been learning Python for about 4 days now. Python is my first programming language, so I'm not that good at coding yet. I have been programming a little random number game as my first project and ...
1
vote
1
answer
151
views
basic tic tac toe
I looked a little into HTML a year ago but decided to try python yesterday and came up with this for tic-tac-toe. I have no programming experience and I haven't yet looked at other peoples versions of ...
3
votes
1
answer
504
views
Blackjack game in python w/ bot
I am a beginner programmer and this is my first project, a blackjack game with a functioning dealer in python. Any feedback would be appreciated (especially if its about bot improvement).
...