亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

利用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

黎城县| 沂源县| 巨野县| 临汾市| 新龙县| 永定县| 安溪县| 肇源县| 卓资县| 开封县| 常山县| 弥勒县| 栾川县| 绥芬河市| 高平市| 九江市| 玉溪市| 千阳县| 高要市| 城市| 宁海县| 岑溪市| 阿克苏市| 会泽县| 景泰县| 蓝田县| 同江市| 镇江市| 青铜峡市| 天峨县| 称多县| 贡山| 大城县| 沙河市| 黄浦区| 环江| 黑河市| 裕民县| 郯城县| 舞钢市| 九龙城区|