Question: For the craps game in the tutorial, the client may want to enter a cash amount to bet for each game. If they bet (

For the craps game in the tutorial, the client may want to enter a cash amount to bet for each game. If they bet (e.g., $5) and win, they receive 2 times their bet ($10); if they lose, the money they bet (e.g., $5) goes to the casino.
If you want to allow a player to bet in this way, what core code additions and changes would need to be implemented in the main function?
a.)
betAmount =-1
while betAmount <0:
bet = input("Pass Line Bet : ")
try:
betAmount = int(bet)
playMultipleGames(number)
except ValueError:
print("Please enter a number for your bet.")
b.)
betAmount =-1
while betAmount <0:
bet = input("Pass Line Bet : ")
try:
print("Please enter a number for your bet.")
except ValueError:
betAmount = int(bet)
playMultipleGames(number,betAmount)
c.)
betAmount =-1
while betAmount <0:
bet = input("Pass Line Bet : ")
try:
betAmount = int(bet)
playMultipleGames(number,betAmount)
except ValueError:
print("Please enter a number for your bet.")
d.)
betAmount =-1
while betAmount <0:
bet = input("Pass Line Bet : ")
try:
betAmount = bet
playMultipleGames(number, betAmount)
except ValueError:
print("Please enter a number for your bet.")

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!