我试图找出如何在掷硬币模拟器中计算结果的几率。头部有50%的可能性和50%的尾部。 我如何计算它返回的结果的可能性? 这是我的代码:
import random
head = 0
tail = 0
length = int(input('How many coins do you want to flip? '))
for i in range(length):
side = random.randint(0, 1)
if side == 1:
head = head + 1
else:
tail = tail + 1
print('There where ' + str(tail) + ' tails and ' + str(head) + ' heads')
答案 0 :(得分:2)
您在模拟中得到的结果的概率可以这样打印:
find . -name *.wav -exec sh -c 'touch "${0%.*}".txt ;' {} \;
答案 1 :(得分:1)