您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“python腳本如何實現點球小游戲”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“python腳本如何實現點球小游戲”這篇文章吧。
具體內容如下
1.游戲要求:
設置球的方向:左中右三個方向,射門或者撲救動作,循環5次,直接輸入方向。電腦隨機挑選方向,如果方向相同,那么電腦得分,如果方向相反,那么人得分。
2.分析如何寫程序:
1)循環,使用for ..in range()
2) if ..else
3)from random import choice 隨機選擇
3.腳本如下:
from random import choice score_person=0 score_com=0 location=['left','center','right'] for i in range (5): print ("----Round %d You kicked----"%(i+1)) com_choice=choice(location) print ("Computer's choice is %s"%com_choice) print ("input what your choice:left/center/right") you_choice=input() print ("You have choose:"+you_choice) if you_choice!=com_choice: # 方向不同,球進! score_person+=1 #人得分 print ("Kicked!") else: print ("Saved unsuccesfully!") #補救 print ("Score:%d(person)-%d(com)\n" %(score_person, score_com)) print ("----Round %d You saved----"%(i+1)) com_choice=choice(location) print ("Computer's choice is %s"%com_choice) print ("input what your choice is:left/center/right") if you_choice==com_choice: #方向相同,球不進! print ("Saved unsucessfully!") score_com+=1 #電腦得分 else: print ("Kicked") print ("Score:%d(person)-%d(com)\n"%(score_person, score_com))
以上是“python腳本如何實現點球小游戲”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。