Craps is a single player dice game, that proceeds as follows: 1. the player rolls 2 six-sided dice once if the total is 7 or 11, the player wins if the total is 2, 3 or 12, the player loses otherwise, the game continues, ... see 2 ... 2. the player the continues to roll the dice repeatedly, until ... the total is the same as the original total (from 1), in which case the player wins the total is 7, in which case the player loses Write a function craps using Python that simulates a single game of craps (may be many rolls) and returns 1 if the player wins and 0 otherwise. Sample results examples: >> import random >>> random.seed(0) >>> craps() 0 >>> random.seed(1) >>> craps() 1 >>> random.seed(2) >>> craps() 0 >>> [ (i,random.seed(i),craps()) for i in range(20)] [(0, None, 0), (1, None, 1), (2, None, 0), (3, None, 1), (4, None, 0), (5, None, 1), (6, None, 0), (7, None, 1), (8, None, 0), (9, None, 0), (10, None, 1), (11, None, 1), (12, None, 1), (13, None, 1), (14, None, 0), (15, None, 0), (16, None, 1), (17, None, 0), (18, None, 0), (19, None, 1)] Please only give to me the final code or "tool" that would generate any of the above examples. Thanks!
Control structures
Control structures are block of statements that analyze the value of variables and determine the flow of execution based on those values. When a program is running, the CPU executes the code line by line. After sometime, the program reaches the point where it has to make a decision on whether it has to go to another part of the code or repeat execution of certain part of the code. These results affect the flow of the program's code and these are called control structures.
Switch Statement
The switch statement is a key feature that is used by the programmers a lot in the world of programming and coding, as well as in information technology in general. The switch statement is a selection control mechanism that allows the variable value to change the order of the individual statements in the software execution via search.
Craps is a single player dice game, that proceeds as follows:
1. the player rolls 2 six-sided dice once
if the total is 7 or 11, the player wins
if the total is 2, 3 or 12, the player loses
otherwise, the game continues, ... see 2 ...
2. the player the continues to roll the dice repeatedly, until ...
the total is the same as the original total (from 1), in which case the player wins
the total is 7, in which case the player loses
Write a function craps using Python that simulates a single game of craps (may be many rolls) and returns 1 if the player wins and 0 otherwise.
Sample results examples:
>> import random
>>> random.seed(0)
>>> craps()
0
>>> random.seed(1)
>>> craps()
1
>>> random.seed(2)
>>> craps()
0
>>> [ (i,random.seed(i),craps()) for i in range(20)]
[(0, None, 0), (1, None, 1), (2, None, 0), (3, None, 1), (4, None, 0), (5, None,
1), (6, None, 0), (7, None, 1), (8, None, 0), (9, None, 0), (10, None, 1), (11,
None, 1), (12, None, 1), (13, None, 1), (14, None, 0), (15, None, 0), (16, None,
1), (17, None, 0), (18, None, 0), (19, None, 1)]
Please only give to me the final code or "tool" that would generate any of the above examples. Thanks!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images