11. pHit 和 pMiss
pHit 和 pMiss
Question:
Start Quiz:
#Write code that outputs p after multiplying each entry
#by pHit or pMiss at the appropriate places. Remember that
#the red cells 1 and 2 are hits and the other green cells
#are misses.
p=[0.2,0.2,0.2,0.2,0.2]
pHit = 0.6
pMiss = 0.2
#Enter code here
print p
Solution:
INSTRUCTOR NOTE:
小提示,我们在寻找:
[miss, hit, hit, miss, miss]