Question: PYTHON 3 For the questions below, assume that the Python random library has been imported already: >>> from random import * 2. Suppose you are
PYTHON 3
For the questions below, assume that the Python random library has been imported already:
>>> from random import *
2. Suppose you are writing a computer game, and you want to simulate rolling two fair six-sided dice. Which of the following could you use?
Group of answer choices
A. rolls = sample(range(6), 2)
B. rolls = [randrange(1,6), randrange(1,6)]
C. rolls = [randint(1,6), randint(1,6)]
D. rolls = [6*random(), 6*random()]
E. All of the above
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
