You are viewing a single comment's thread. Return to all comments →
python sol
import statistics mean = 70 sd = 10 x1 = 80 x2 = 60 nd = statistics.NormalDist(mean, sd) print(round((1-nd.cdf(x1))*100, 2)) print(round((1-nd.cdf(x2))*100, 2)) print(round(nd.cdf(x2)*100, 2))
Seems like cookies are disabled on this browser, please enable them to open this website
Day 5: Normal Distribution II
You are viewing a single comment's thread. Return to all comments →
python sol