【发布时间】:2016-10-20 01:54:32
【问题描述】:
import random
def main():
playagain = 1
win=0
lose=0
tie=0
while playagain==1:
printCpu=cpuConverter()
printPlayer=playerConverter()
print("The computers choice is", printCpu)
print("Your choice is", printPlayer)
gameWinner(printCpu, printPlayer)
winner(gameWinner, printCpu, printPlayer)
playagain=int(input("Would you like to play again? Enter 1 for yes, any other number for no!"))
print("Your total wins are", win)
print("Your total losses are", lose)
print("Your total ties are", tie)
def cpuConverter():
cpuChoice=random.randrange(1,4)
if cpuChoice==1:
printCpu="Rock"
elif cpuChoice==2:
printCpu="Paper"
else:
printCpu="Scissors"
return printCpu
def playerConverter():
again=0
while again<1 or again>3:
printPlayer=int(input("Please choose a number to play against the computer. 1=Rock 2=Paper 3=Scissors "))
if printPlayer<1 or printPlayer>3:
print("Invalid choice for the game. Please choose another number inside the constraints.")
elif printPlayer==1:
printPlayer="Rock"
again=1
elif printPlayer==2:
printPlayer="Paper"
again=1
else:
printPlayer="Scissors"
again=1
return printPlayer
def gameWinner(printCpu, printPlayer):
if printCpu == printPlayer:
winner = "tie"
print("It's a tie")
elif printCpu == "Scissors" and printPlayer == "Rock":
winner = "win"
print("Rock beats Scissors! You win")
elif printCpu == "Paper" and printPlayer == "Scissors":
winner = "win"
print("Scissors cuts paper! You win")
elif printCpu == "Rock" and printPlayer == "Paper":
winner = "win"
print("Paper covers Rock! You win")
else:
winner = "lose"
print("You lose")
return winner
def winner(gameWinner, printCpu, printPlayer):
if winner == "win":
win += 1
elif winner == "lose":
lose += 1
elif winner == "tie":
tie += 1
return winner
main()
所以当我尝试这段代码时,大部分情况下一切正常。我似乎唯一无法工作的是实际的计数部分。当我在玩了多次(甚至一次)后尝试打印我的结果时,代码仍然以零作为游戏总数。有人可以告诉我我在哪里搞砸了,希望能帮我解决这个问题吗?
【问题讨论】:
-
你弄乱了变量和函数的名字
-
为什么你会在 "winner" 和 gameWinner 中返回获胜者?为什么您的函数名称与变量“winner”相同?我认为首先要做的就是用一个能准确显示功能的名称来命名你的函数。