坦克世界2021假日行動(dòng)開箱概率模擬測(cè)試(僅供娛樂)
2021-12-09 02:21 作者:carbonsunsu | 我要投稿
Python代碼如下:
import random
boxCount = 100000000
premTankCount = 0
count0to49 = 0
for i in range(1, boxCount + 1):
? ? if (count0to49 == 49):
? ? ? ? count0to49 = 0
? ? ? ? premTankCount += 1
? ? else:
? ? ? ? if random.randint(1, 1000) <= 24:
? ? ? ? ? ? count0to49 = 0
? ? ? ? ? ? premTankCount += 1
? ? ? ? else:
? ? ? ? ? ? count0to49 += 1
? ? '''
? ? if random.randint(1, 1000) <= 24:
? ? ? ? premTankCount += 1
? ? '''
? ??
print("開箱子總數(shù): " + str(boxCount))
print("開出金幣車的數(shù)量: " + str(premTankCount))
print("平均每50個(gè)箱子開出金幣車的個(gè)數(shù): " + str(premTankCount / (boxCount / 50)))
開1億個(gè)箱子的結(jié)果,僅考慮8金:
所以結(jié)論是平均每50個(gè)箱子能開出1.7個(gè)金幣車

最后祝大家這次開箱一單畢業(yè)
標(biāo)簽: