This is a simple Python betting game where players can deposit money, place bets, and spin a 3x3 slot machine with symbols "A," "B," "C," and "D." Players choose how many lines to bet on and aim to match symbols across these lines to win money.
- Deposit money to start playing
- Place bets on up to 3 lines
- Spin a 3x3 slot machine
- Match symbols "A," "B," "C," and "D" to win
- Each symbol has different values and probabilities
- Deposit Money: Start by depositing a certain amount of money.
- Choose Lines: Select the number of lines (1-3) to bet on.
- Place Bet: Place a bet amount within the allowed range.
- Spin: Spin the slot machine and try to match symbols on the chosen lines.
- Win or Lose: Winnings are calculated based on the matched symbols' values.
- A: Value 5, Probability 2
- B: Value 4, Probability 4
- C: Value 3, Probability 6
- D: Value 2, Probability 8
- Ensure you have Python installed.
- Clone this repository.
- Run
python betting_game.py
to start the game.
"# Bet-Game"