日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程语言 > python >内容正文

python

python编写篮球_Python编程2——Python实现计算篮球比赛是否领先安全的程序

發(fā)布時(shí)間:2023/12/19 python 44 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python编写篮球_Python编程2——Python实现计算篮球比赛是否领先安全的程序 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

前言

這個(gè)程序的算法部分是Bill James 博士的’Safe lead calculator’

網(wǎng)址:http://www.slate.com/articles/sports/sports_nut/2008/03/the_lead_is_safe.html

這里有一個(gè)基于swf的計(jì)算器的實(shí)現(xiàn)http://img.slate.com/media/53/LeadCalc2.swf

程序

這里我全部略過算法的說明部分,直接上程序了。

#Bill James 'Safe lead calculator'

#from http://www.slate.com/id/2185975/

#take the number of points one team ahead

pointsStr=raw_input("Enter the number of the lead in the play: \n")

pointsInt=int(pointsStr)

#subtract threee

points=pointsInt-3

#add a half-point or not

#depenf the ball is has or not

has_ball=raw_input("Does the lead team has the ball or not(Yes or No): \n")

if has_ball == 'Yes':

points=points+0.5

else:

points=points-0.5

if points < 0:

points=0

#square the points to get the conclusion

points=points **2

#to judge the condition whether we should judge there should the

#time that left

seconds=int(raw_input("Enter the number of seconds remaining: \n"))

if points > seconds:

print "Lead is safe!"

else:

print "Lead is not safe!"

總結(jié)

以上是生活随笔為你收集整理的python编写篮球_Python编程2——Python实现计算篮球比赛是否领先安全的程序的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。