Python 基础实例——模拟两人比赛

浏览: 1048

match simulate

from random import * 

def main():
printIntro()
#打印介绍信息
probA,probB,n = getInputs()
#输入参数
winsA, winsB = simNGames(n,probA,probB)
#模拟比赛核心函数
PrintSummary(winsA, winsB)
#输出模拟结果
##############主函数设置完成#############

def printIntro():
print('This program simulates a game between two')
print('There are two players, A and B')
print('Probability(a number between 0 and 1)is used')

def getInputs():
a = eval(input('What is the prob.player A wins?'))
b = eval(input('What is the prob.player B wins?'))
n = eval(input('How many games to simulate?'))
return a,b,n

def simNGames(n,probA,probB):
winsA = 0
winsB = 0
for i in range(n):
scoreA,scoreB = simOneGame(probA,probB)
if scoreA >scoreB:
winsA = winsA + 1
else:
winsB = winsB + 1
return winsA,winsB
def simOneGame(probA,probB):
scoreA = 0
scoreB = 0
serving = "A"
while not gameOver(scoreA,scoreB):
if serving == "A":
if random() < probA:
scoreA = scoreA + 1
else:
serving = "B"
else:
if random() < probB:
scoreB = scoreB + 1
else:
serving = "A"
return scoreA,scoreB

def gameOver(a,b):
return a==15 or b==15

def PrintSummary(winsA, winsB):
n = winsA + winsB
print('\nGames simulated:%d'%n)
print('Wins for A:{0}({1:0.1%})'.format(winsA,winsA/n))
print('Wins for B:{0}({1:0.1%})'.format(winsB,winsB/n))

if __name__ == '__main__':
main()
推荐 1
本文由 霍开拓 创作,采用 知识共享署名-相同方式共享 3.0 中国大陆许可协议 进行许可。
转载、引用前需联系作者,并署名作者且注明文章出处。
本站文章版权归原作者及原出处所有 。内容为作者个人观点, 并不代表本站赞同其观点和对其真实性负责。本站是一个个人学习交流的平台,并不用于任何商业目的,如果有任何问题,请及时联系我们,我们将根据著作权人的要求,立即更正或者删除有关内容。本站拥有对此声明的最终解释权。

0 个评论

要回复文章请先登录注册