Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In the previous exercise, you used rand ( ) , that generates a random float between 0 and 1 . As Hugo explained in the

In the previous exercise, you used rand(), that generates a random float between 0 and 1.
As Hugo explained in the video you can just as well use randint(), also a function of the random package, to generate integers randomly. The following call generates the integer 4,5,6 or 7 randomly. 8 is not included.
import numpy as np
np.random.randint(4,8)
NumPy has already been imported as np and a seed has been set. Can you roll some dice?
Instructions
100 XP
Use randint() with the appropriate arguments to randomly generate the integer 1,2,3,4,5 or 6. This simulates a dice. Print it out.
Repeat the outcome to see if the second throw is different. Again, print out the result.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Time Series Databases New Ways To Store And Access Data

Authors: Ted Dunning, Ellen Friedman

1st Edition

1491914726, 978-1491914724

More Books

Students also viewed these Databases questions