MulaiMulai sekarang secara gratis

Using binom to flip even more coins

Previously, you simulated 10 coin flips with a 35% chance of getting heads using bernoulli.rvs().

This exercise loads the binom object from scipy.stats so you can use binom.rvs() to simulate 20 trials of 10 coin flips with a 35% chance of getting heads on each coin flip.

Latihan ini adalah bagian dari kursus

Foundations of Probability in Python

Lihat Kursus

Petunjuk latihan

  • Use the binom.rvs() function to simulate 20 trials of 10 coin flips with a 35% chance of getting heads.

Latihan interaktif praktis

Cobalah latihan ini dengan menyelesaikan kode contoh berikut.

# Set the random seed to reproduce the results
np.random.seed(42)

# Simulate 20 trials of 10 coin flips 
draws = ____.rvs(n=____, p=____, size=____)
print(draws)
Edit dan Jalankan Kode