91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用Python編寫一個剪刀石頭布小游戲

發布時間:2020-12-11 14:31:15 來源:億速云 閱讀:233 作者:Leah 欄目:開發技術

利用Python編寫一個剪刀石頭布小游戲?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

對項目進行編碼的步驟:

  1. 創建一個簡單的單輪游戲版本,我們不執行正確的輸入。

  2. 如果輸入了無效的內容,則添加while循環可重新提示用戶輸入選擇。

  3. 使用while循環讓用戶反復播放,并使用變量來跟蹤得分。

程序代碼

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")

運行效果:

利用Python編寫一個剪刀石頭布小游戲

看完上述內容,你們掌握利用Python編寫一個剪刀石頭布小游戲的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

玉龙| 杭锦后旗| 固原市| 蒙阴县| 虹口区| 长汀县| 扬州市| 泗洪县| 青河县| 胶南市| 呼和浩特市| 云梦县| 五峰| 文成县| 双柏县| 福州市| 从化市| 中阳县| 泰来县| 长沙市| 鄂州市| 沿河| 灵丘县| 石屏县| 甘泉县| 遂平县| 博客| 柳江县| 绥阳县| 安远县| 芷江| 泽库县| 麻栗坡县| 宜君县| 新乐市| 金乡县| 曲阜市| 兰溪市| 海南省| 霞浦县| 革吉县|