All Questions
13 questions
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 ...
3
votes
2
answers
350
views
Creating some Loaded Dice to make our board game fairer
Some friends and I were playing a board game and decided that the random dice rolls just weren't fair! So we came up with a scheme for making the rolls slightly more evenly distributed, and I ...
1
vote
2
answers
156
views
Monte Carlo Simulation of "DNA Mutation" Game Mechanic
The game Space Station 13 (on the Paradise Station codebase) contains a DNA mechanic. Every carbon-based lifeform with DNA has 55 "blocks" that can be altered in a DNA Modifier, giving the mob ...
1
vote
3
answers
136
views
My first code: Blackjack game
After just learning a bit of Python, I tried coding something myself. I attempted to do a game of Blackjack, which is far from perfect, and still doesn't have some rules a real game has (in my game an ...
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 ...
3
votes
1
answer
578
views
Simple command-line roulette game
I developed a simple command-line roulette game. Your only options are betting on color, but you can bet multiple times in one round
...
4
votes
1
answer
87
views
Small tile coloring app
I made a small app that revolves around coloring tiles - I am a newby to Python so I am unsure whether I followed the general guidelines correct (use of functions and classes, format, syntax)
You can ...
3
votes
1
answer
206
views
Simple game of lotto in Python v 2.0
This is the second version of my lotto game, based on this thread before. I hope I used all the tips I was given, also I fixed it using only functions as promised.
Game rules
Each player is given 15 ...
10
votes
2
answers
4k
views
Rock, Paper, Scissors - Python game
This is my attempt at making a 'rock, paper, scissors' game in python. The game takes the user's input and the computer's random selection and calculates who has won. All feedback appreciated.
...
6
votes
1
answer
879
views
10-faced dice-rolling game
My code is for a 10-faced dice-rolling game. There are 2 players who start off with 50 points, then they both roll a dice and get a random score between 1-10. The player with the highest roll gets the ...
6
votes
1
answer
2k
views
First text game with Python - Higher or Lower
Recently I have been learning Python programming, for about a week. I have covered all basic stuff - loops, strings, input masks - and have challenged myself by making a little game. It isn't much, ...
2
votes
2
answers
1k
views
How to make this random number game better?
I'm a newbie trying to teach myself Python. Could somebody tell me if there is a better way to write this? I am also curious as to whether or not there is anything I should not do. This code does ...
2
votes
1
answer
2k
views
Craps dice game simulator
This craps game simulator is based on someone else's posted Python code that I've redone for practice. I'm interested in improving readability and making it more pythonic. I used ...