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!

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter6: Looping
Section: Chapter Questions
Problem 5GZ
icon
Related questions
icon
Concept explainers
Question

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!

 

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Control Structure
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Operations Research : Applications and Algorithms
Operations Research : Applications and Algorithms
Computer Science
ISBN:
9780534380588
Author:
Wayne L. Winston
Publisher:
Brooks Cole
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning