Question: Programming in python 3.6.4: Implement a function rollDice which accepts a single argument, n, and then returns a list of n random dice rolls (each

Programming in python 3.6.4:

Implement a function rollDice which accepts a single argument, n, and then returns a list of n random dice rolls (each a number between 1 and 6 (inclusive)).

>>> random.seed( 0 )

>>> rollDice( 5 )

[4, 4, 1, 3, 5]

>>> random.seed( 10 )

>>> rollDice( 10 )

[5, 1, 4, 4, 5, 1, 2, 4, 4, 3]

>>> random.seed( 7 )

>>> rollDice( 20 )

[3, 2, 4, 6, 1, 1, 5, 1, 3, 5, 1, 5, 2, 1, 1, 4, 4, 1, 2, 1]

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!