stuff
This commit is contained in:
20
exercises/3-roulette-wheel/README.md
Normal file
20
exercises/3-roulette-wheel/README.md
Normal file
@ -0,0 +1,20 @@
|
||||
Roulette Wheel
|
||||
===============
|
||||
|
||||
####Lets make a terminal game of Roulette!
|
||||
|
||||

|
||||
|
||||
|
||||
Write a program that takes the player's bet. The player should be able to bet on any number of spaces, as well as red, black, odd, even, 1-18, and 19-36.
|
||||
|
||||
We are modeling the American Roulette board, which includes a "00" space.
|
||||
|
||||
Take a look at the betting odds table for roulette [here](http://en.wikipedia.org/wiki/Roulette#Bet_odds_table)
|
||||
|
||||
The program should display their odds against winning in real time as they choose places.
|
||||
|
||||
When the user decides to roll, they should get the random result and their payout if any. You do not need to implement betting, although you can if want to! You can represent payout as a multiplier of the amount they won over the amount they bet.
|
||||
|
||||
Make it fun!
|
||||
|
3
exercises/3-roulette-wheel/roulette.py
Normal file
3
exercises/3-roulette-wheel/roulette.py
Normal file
@ -0,0 +1,3 @@
|
||||
class Roulette:
|
||||
def __init__(self):
|
||||
pass
|
Reference in New Issue
Block a user