本帖最后由 ShiratoriAira 于 2021-8-7 01:30 编辑
测试环境:Python 3.8
如果是Python 2.x,第一行加上[Python] 纯文本查看 复制代码 from __future__ import division
第42行
[Python] 纯文本查看 复制代码 serving == "B"
改为
[Python] 纯文本查看 复制代码 serving = "B"
第47行
[Python] 纯文本查看 复制代码 serving == "A"
改为
[Python] 纯文本查看 复制代码 serving = "A"
第54-55行
[Python] 纯文本查看 复制代码 print("选手A获胜{}场,占比{:0.1%}".format(a, a // n))
print("选手B获胜{}场,占比{:0.1%}".format(b, b // n))
改为
[Python] 纯文本查看 复制代码 print("选手A获胜{}场,占比{:0.1%}".format(a, a / n))
print("选手B获胜{}场,占比{:0.1%}".format(b, b / n))
[Python] 纯文本查看 复制代码 from random import random
def intro():
print('''此程序模拟两个选手A和B的乒乓球比赛
程序的运行需要A和B的能力值(以0-1之间的小数表示)''')
def getinputs():
a = eval(input("请输入A的能力值:"))
b = eval(input("请输入B的能力值:"))
c = eval(input("请输入比赛的场数: 次"))
return a, b, c
def Pgames(probA, probB, n):
winsA, winsB = 0, 0
for i in range(n):
scoreA, scoreB = Pogames(probA, probB)
if scoreA > scoreB:
winsA += 1
# elif scoreA<scoreB:
# winsB += 1
else:
# continue
winsB += 1
return winsA, winsB
def gameover(scoreA, scoreB):
return scoreA == 15 or scoreB == 15
def Pogames(probA, probB):
scoreA, scoreB = 0, 0
serving = "A"
while not gameover(scoreA, scoreB):
if serving == "A":
if random() < probA:
scoreA += 1
else:
serving = "B"
else:
if random() < probB:
scoreB += 1
else:
serving = "A"
return scoreA, scoreB
def summary(a, b):
n = a + b
print("共举行{}场比赛".format(n))
print("选手A获胜{}场,占比{:0.1%}".format(a, a / n))
print("选手B获胜{}场,占比{:0.1%}".format(b, b / n))
def main():
intro()
probA, probB, n = getinputs()
winsA, winsB = Pgames(probA, probB, n)
summary(winsA, winsB)
main()
[Bash shell] 纯文本查看 复制代码 此程序模拟两个选手A和B的乒乓球比赛
程序的运行需要A和B的能力值(以0-1之间的小数表示)
请输入A的能力值:0.45
请输入B的能力值:0.5
请输入比赛的场数: 次1000
共举行1000场比赛
选手A获胜336场,占比33.6%
选手B获胜664场,占比66.4% |