1. 程式人生 > 程式設計 >Python製作簡單的剪刀石頭布遊戲

Python製作簡單的剪刀石頭布遊戲

關於程式相關的

  • 您可以反覆玩遊戲,直到選擇停止為止。
  • 該程式跟蹤獲勝情況。
  • 大小寫無關緊要(即ROCK與Rock相同)。
  • 如果您輸入的內容無效,程式會一直提示您,直到您輸入有效的內容。

對專案進行編碼的步驟:

  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,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製作簡單的剪刀石頭布遊戲的詳細內容,更多關於Python 剪刀石頭布遊戲的資料請關注我們其它相關文章!