点球小游戏python脚本
本文实例为大家分享了python点球小游戏的具体代码,供大家参考,具体内容如下
1.游戏要求:
设置球的方向:左中右三个方向,射门或者扑救动作,循环5次,直接输入方向。电脑随机挑选方向,如果方向相同,那么电脑得分,如果方向相反,那么人得分。
2.分析如何写程序:
1)循环,使用for..inrange()
2)if..else
3)fromrandomimportchoice随机选择
3.脚本如下:
fromrandomimportchoice score_person=0 score_com=0 location=['left','center','right'] foriinrange(5): print("----Round%dYoukicked----"%(i+1)) com_choice=choice(location) print("Computer'schoiceis%s"%com_choice) print("inputwhatyourchoice:left/center/right") you_choice=input() print("Youhavechoose:"+you_choice) ifyou_choice!=com_choice:#方向不同,球进! score_person+=1#人得分 print("Kicked!") else: print("Savedunsuccesfully!")#补救 print("Score:%d(person)-%d(com)\n"%(score_person,score_com)) print("----Round%dYousaved----"%(i+1)) com_choice=choice(location) print("Computer'schoiceis%s"%com_choice) print("inputwhatyourchoiceis:left/center/right") ifyou_choice==com_choice:#方向相同,球不进! print("Savedunsucessfully!") score_com+=1#电脑得分 else: print("Kicked") print("Score:%d(person)-%d(com)\n"%(score_person,score_com))
这小游戏的功能类似于猜数游戏。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。