All Questions
9 questions
3
votes
1
answer
675
views
Python Text-Based Hangman Game
I have just written a hangman game in Python for a school project. It reads in a list of words from a text file, and graphics from another text file.
For each word, the program asks keeps asking for ...
2
votes
2
answers
869
views
Blackjack script in Python
Recently I had a python test and, unfortunately, I failed. I'm going to re-do my test and the teacher gave me the tip to work more efficiently and clean. To practice this I made a blackjack game about ...
10
votes
5
answers
15k
views
Python Bingo game that stores card in a dictionary
I am super proud of this python bingo game I wrote. I am posting it here to make get some help reviewing it to make sure I'm using the best practices. This is for a class, and my professor is a ...
-2
votes
1
answer
71
views
A game that deals a high card to one of two players [closed]
So for my class, I have to design a game that will deal out one card to for each player. I also need to use functions to accomplish this one for the high card game, and another for the face value of ...
6
votes
2
answers
23k
views
Two-player dice game for NEA task computer science (Updated)
This is a game for two users who roll 2 dice 5 times. If the total of dice is even the player gains 10 points; if it is odd, they lose 5.
If there is a draw after five rounds then both users will ...
6
votes
2
answers
4k
views
2 player dice game, where even total gains points and odd total loses points NEA task computer science
This is a game for two users who roll 2 dice 5 times. If the total of dice is even the player gains 10 points if it is odd, they lose 5.
If there it is a draw after five rounds then the both users ...
7
votes
2
answers
18k
views
'Snakes and Ladders' game
I made this game of snakes and ladders for school, and it has to have:
Multiple players
Player Names
Random Dice roll
Snakes and ladders (obviously!)
Subroutines
It is currently 124 lines, ...
10
votes
4
answers
5k
views
Suggestions for a Dungeons and Dragons-like game
This game is similar to a Dungeons and Dragons game. How could I improve the efficiency of the program? For example, where can I add functions, records etc? This is for a school Controlled ...
5
votes
1
answer
746
views
Fallout-style homework game
I've been going through LPHW (learn Python the hard way) lessons and I am now at exercise No36 where I have to create a similar game.
Could you please review it and point out beginner mistakes?
<...