Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started