关于体育的python毕业设计_Python实例13:体育竞技分析
Python實例13:體育競技分析
8.1.1 問題分析
需求:毫厘是多少?如何科學分析體育競技比賽?
輸入:球員的水平;
輸出:可預測的比賽成績;
8.1.2 自頂向下,自底向上
將大問題分為幾個小問題部分;
將由底部逐步向上;
在這里插入圖片描述
實例講解
自上向下設計步驟:
打印程序的介紹性信息式;printInfo()
獲得程序運行參數:proA,proB,n;getInputs()
利用球員A和B的能力值,模擬n局比賽;simNGames()
輸出球員A和B獲勝比賽的場次及概率;printSummary()
第一階段:定義函數
def main():
printIntro()
probA, probB, n = getInputs()
winsA, winsB = simNGames(n, probA, probB)
printSummary(winsA, winsB)
def printIntro():
print("這個程序模擬兩個選手A和B的某種競技比賽")
print("程序運行需要A和B的能力值(以0到1之間的小數表示)")
def getInputs():
a = eval(input("請輸入選手A的能力值(0-1):"))
b = eval(input("請輸入選手B的能力值(0-1):"))
n = eval(input("模擬比賽的場次:"))
return a, b, n
def printSummary(winsA, winsB):
n = winsA + winsB
print("競技分析開始,共模擬{}場比賽".format(n))
print("選手A獲勝{}場比賽,占比{:0.1%}".format(winsA, winsA/n))
print("選手B獲勝{}場比賽,占比{:0.1%}".format(winsB, winsB/n))
第二階段:步驟3,模擬N局比賽
def simNGames(n, probA, probB):
winsA, winsB = 0, 0
for i in range(n):
scoreA, scoreB = simOneGame(probA, probB)
if scoreA > scoreB:
winsA += 1
else:
winsB += 1
return winsA, winsB
第三階段:
def simOneGame(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 gameOver(a, b):
return a == 15 or b == 15
完整代碼:
from random import random
def printIntro():
print("這個程序模擬兩個選手A和B的某種競技比賽")
print("程序運行需要A和B的能力值(以0到1之間的小數表示)")
def getInputs():
a = eval(input("請輸入選手A的能力值(0-1):"))
b = eval(input("請輸入選手B的能力值(0-1):"))
n = eval(input("模擬比賽的場次:"))
return a, b, n
def printSummary(winsA, winsB):
n = winsA + winsB
print("競技分析開始,共模擬{}場比賽".format(n))
print("選手A獲勝{}場比賽,占比{:0.1%}".format(winsA, winsA/n))
print("選手B獲勝{}場比賽,占比{:0.1%}".format(winsB, winsB/n))
def simOneGame(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 gameOver(a, b):
return a == 15 or b == 15
def simNGames(n, probA, probB):
winsA, winsB = 0, 0
for i in range(n):
scoreA, scoreB = simOneGame(probA, probB)
if scoreA > scoreB:
winsA += 1
else:
winsB += 1
return winsA, winsB
def main():
printIntro()
probA, probB, n = getInputs()
winsA, winsB = simNGames(n, probA, probB)
printSummary(winsA, winsB)
main()
這個程序模擬兩個選手A和B的某種競技比賽
程序運行需要A和B的能力值(以0到1之間的小數表示)
請輸入選手A的能力值(0-1):0.79
請輸入選手B的能力值(0-1):0.8
模擬比賽的場次:10000
競技分析開始,共模擬10000場比賽
選手A獲勝5277場比賽,占比52.8%
選手B獲勝4723場比賽,占比47.2%
點贊,關注,收藏👍,?,👀點贊,關注,收藏👍,?,👀點贊,關注,收藏👍,?,👀
😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘😘
💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪💪
在這里插入圖片描述
總結
以上是生活随笔為你收集整理的关于体育的python毕业设计_Python实例13:体育竞技分析的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: main 函数解析(二)—— Linux
- 下一篇: 在 C 中引用汇编语言定义的 .glob