wuxi 发表于 2021-8-6 23:44

小白初学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()
————————分割线————————
但是我得到的结果确是这样的
此程序模拟两个选手A和B的乒乓球比赛
            程序的运行需要A和B的能力值(以0-1之间的小数表示)
请输入A的能力值:0.45
请输入B的能力值:0.5
请输入比赛的场数:次1000
共举行1000场比赛
选手A获胜1000场,占比100.0%
选手B获胜0场,占比0.0%
>>>
哪出错了 啊呜呜呜呜呜呜呜呜

ShiratoriAira 发表于 2021-8-7 01:22

本帖最后由 ShiratoriAira 于 2021-8-7 01:30 编辑

测试环境:Python 3.8

如果是Python 2.x,第一行加上from __future__ import division

第42行
serving == "B"
改为
serving = "B"

第47行
serving == "A"
改为
serving = "A"
第54-55行
print("选手A获胜{}场,占比{:0.1%}".format(a, a // n))
print("选手B获胜{}场,占比{:0.1%}".format(b, b // n))
改为
print("选手A获胜{}场,占比{:0.1%}".format(a, a / n))
print("选手B获胜{}场,占比{:0.1%}".format(b, b / n))
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()



此程序模拟两个选手A和B的乒乓球比赛
            程序的运行需要A和B的能力值(以0-1之间的小数表示)
请输入A的能力值:0.45
请输入B的能力值:0.5
请输入比赛的场数:次1000
共举行1000场比赛
选手A获胜336场,占比33.6%
选手B获胜664场,占比66.4%

我心飞翔1995 发表于 2021-8-7 00:36

你要发报错才好排查,python的报错还是容易看的

Lv归来 发表于 2021-8-7 01:59

楼上正解

Wapj_Wolf 发表于 2021-8-7 07:40

偶也是小白,很容易犯语法错误的。

luanshils 发表于 2021-8-7 09:17

排版下次可以把布局分成,第一部分总代码,第二部分输出结果,第三部分文字说明。有相应的代码包围标签。或者用MD写

wuxi 发表于 2021-8-7 09:27

ShiratoriAira 发表于 2021-8-7 01:22
测试环境:Python 3.8

如果是Python 2.x,第一行加上from __future__ import...

谢谢大佬们!!

Idongt 发表于 2021-8-7 11:37

有错误 也看不出来 尴尬
页: [1]
查看完整版本: 小白初学python,刚学着写程序,卡在书中体育竞技程序设计实例了。