You have already completed these exercises!
Do you want to take them again?
You completed the NUMPY Random Data Distribution Exercises from W3Schools.com
Share on:
Consider the following code:x = random.choice([5, 2, 7], p=[0.1, 0.3, 0.0], size=(100))print(x)Which one of the following numbers will never occur in the result?
x = random.choice([5, 2, 7], p=[0.1, 0.3, 0.0], size=(100))print(x)
5
2
7