Python制作簡單的剪刀石頭布游戲
更新時間:2020年12月10日 15:22:55 作者:Juni
這篇文章主要介紹了Python制作剪刀石頭布游戲的方法,幫助大家更好的理解和使用python,感興趣的朋友可以了解下
關(guān)于程序相關(guān)的
- 您可以反復(fù)玩游戲,直到選擇停止為止。
- 該程序跟蹤獲勝情況。
- 大小寫無關(guān)緊要(即ROCK與Rock相同)。
- 如果您輸入的內(nèi)容無效,程序會一直提示您,直到您輸入有效的內(nèi)容。
對項(xiàng)目進(jìn)行編碼的步驟:
- 創(chuàng)建一個簡單的單輪游戲版本,我們不執(zhí)行正確的輸入。
- 如果輸入了無效的內(nèi)容,則添加while循環(huán)可重新提示用戶輸入選擇。
- 使用while循環(huán)讓用戶反復(fù)播放,并使用變量來跟蹤得分。
程序代碼
import random input("Welcome to Rock, Paper, Scissors! Press Enter to start.") print() user_wins = 0 computer_wins = 0 choices = ["rock", "paper", "scissors"] while True: random_index = random.randint(0,2) cpu_choice = choices[random_index] user_choice = input("Rock, Paper, or Scissors? ").lower() while user_choice not in choices: user_choice = input("That is not a valid choice. Please try again: ").lower() print() print("Your choice:", user_choice) print("Computer's choice:", cpu_choice) print() if user_choice == 'rock': if cpu_choice == 'rock': print("It's a tie!") elif cpu_choice == 'scissors': print("You win!") user_wins+=1 elif cpu_choice == 'paper': print("You lose!") computer_wins+=1 elif user_choice == 'paper': if cpu_choice == 'paper': print("It's a tie!") elif cpu_choice == 'rock': print("You win!") user_wins+=1 elif cpu_choice == 'scissors': print("You lose!") computer_wins+=1 elif user_choice == 'scissors': if cpu_choice == 'scissors': print("It's a tie!") elif cpu_choice == 'paper': print("You win!") user_wins+=1 elif cpu_choice == 'rock': print("You lose!") computer_wins+=1 print() print("You have "+str(user_wins)+" wins") print("The computer has "+str(computer_wins)+" wins") print() repeat = input("Play again? (Y/N) ").lower() while repeat not in ['y', 'n']: repeat = input("That is not a valid choice. Please try again: ").lower() if repeat == 'n': break print("\n----------------------------\n")
運(yùn)行效果:
以上就是Python制作簡單的剪刀石頭布游戲的詳細(xì)內(nèi)容,更多關(guān)于Python 剪刀石頭布游戲的資料請關(guān)注腳本之家其它相關(guān)文章!
相關(guān)文章
Python實(shí)現(xiàn)圖像去噪方式(中值去噪和均值去噪)
今天小編就為大家分享一篇Python實(shí)現(xiàn)圖像去噪方式(中值去噪和均值去噪),具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-12-12python異常處理之try finally不報(bào)錯的原因
這篇文章主要介紹了python異常處理之try finally不報(bào)錯的原因,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-05-05M1 mac安裝PyTorch的實(shí)現(xiàn)步驟
本文將介紹如何在M1機(jī)器上本地安裝和運(yùn)行PyTorch。你使用的M1機(jī)型(Air、Pro、Mini或iMac)沒有區(qū)別。感興趣的可以了解一下2021-08-08利用Python和C++實(shí)現(xiàn)解析gltf文件
gltf是類似于stl、obj、ply等常見的3D對象存儲格式,它被設(shè)計(jì)出來是為了便于渲染的數(shù)據(jù)轉(zhuǎn)換和傳輸,本文為大家介紹了使用Python和C++解析gltf文件的方法,感興趣的可以了解下2023-09-09Python matplotlib繪圖設(shè)置圖例案例
這篇文章主要給大家分享Python matplotlib繪圖設(shè)置圖例案例,過程會學(xué)到edgecolor 圖例邊框線顏色 facecolor 圖例背景色 shadow 是否添加陰影 title 圖例標(biāo)題 fontsize 設(shè)置字體大小,小編覺得挺有意思的,感興趣的小伙伴也可以參考一下2021-12-12Flask 讓jsonify返回的json串支持中文顯示的方法
下面小編就為大家分享一篇Flask 讓jsonify返回的json串支持中文顯示的方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-03-03django使用定時任務(wù)django_apscheduler的實(shí)現(xiàn)
定時任務(wù)無論是個人開發(fā)還是企業(yè)業(yè)務(wù)都是需要的,本文主要介紹了django使用定時任務(wù)django_apscheduler的實(shí)現(xiàn),減少請求時需要用戶等待的時間,感興趣的可以了解一下2021-08-08