在python中用户更改变量后,如何不断更新它?

2024-09-28 01:22:48 发布

您现在位置:Python中文网/ 问答频道 /正文

我在做一个游戏,用户输入“x”数量的筹码放入第一堆和第二堆。(例如,用户输入:12;第一堆:12,第二堆:12)然后从第一堆或第二堆拿走“z”数量的芯片,然后计算机从另一堆拿走用户从中拿走的相同数量的芯片。所以基本上电脑总是赢。但在两个桩都达到0之前,我在更新桩时遇到了一些问题。你知道吗

def initGame():
    pile1= chips
    pile2= chips
    finished = False
    while chips<=0:
        if chips <= 0:
            print("Please input a number greater than 0")
        finished= True
    else:
        finished= True
    return pile1, pile2

def displayPiles(pile1, pile2):
    print("It is your turn human.")
    print("Here are the piles: ")
    print("pile 1: "+ str(pile1))
    print("pile 2: "+ str(pile2))

    return pile1, pile2

def getHumanMove(x,y):
    finished = False
    while not finished:
        x=int(input("Which pile would you like to take from?(1 or 2)"))
        y=int(input("How many would you like from pile "+ str(x)+ "? "))
        if pile1 and pile2<y:
            print("pile " +str(x)+ " does not have that many chips. Try again.")
        elif y==0:
            print("You must take at least one chip. Try again.")
        else:
            print("That was a legal move. Thank You.")
        finished = True
    return x,y

def getPiles(pile1, pile2, move):
    print("Here are the piles: ")
    x,y = move
    if x == 1:
        pile1= pile1- y
        print("pile 1: ", str(pile1))
        print("pile 2: ", str(pile2))
    elif x == 2:
        pile2= pile1- y
        print("pile 1: ", str(pile1))
        print("pile 2: ", str(pile2))
        return pile1, pile2

def getCompMove(x,y, pile1, pile2):
    print("Now it's my turn.")
    pile1, pile2= pile1, pile2
    x= x 
    y= y
    if x==1:
        print("I, the champion chips computer will take "+str(y)+ " chips from pile 2")
        pile2= pile2 - y
        pile1= pile1
    elif x==2:
        print("I, the champion chips computer will take "+str(y)+ " chips from pile 1")
        pile1= pile1 - y
        pile2= pile2
    if pile1==0 and pile2==0:
        print("The game is over because I took the last chip.")
        print("Thanks for playing. Let's wager next time.")        
    return x,y, pile1, pile2

def compPiles(pile1, pile2):
    print("Here are the piles: ")
    pile1, pile2= pile1, pile2
    print("pile 1: ", str(pile1))
    print("pile 2: ", str(pile2))
    return pile1, pile2

主要

chips = int(input("How many chips would you like to start with? "))

pile1, pile2= initGame()

display = displayPiles(pile1, pile2)

move= getHumanMove(pile1, pile2)

pile= getPiles(pile1, pile2, move)

x,y = move

_,_,pile1, pile2 = getCompMove(x,y, pile1, pile2)

pile1, pile2 =pile1, pile2

compi= compPiles(pile1, pile2)

当我运行这个程序时,它会正确地删除被删除的芯片数量,但是当计算机移动时它不会更新它。你知道吗

Here are the piles: 
pile 1:  9
pile 2:  12
Now it's my turn.
I, the champion chips computer will take 3 chips from pile 2
Here are the piles: 
pile 1:  12
pile 2:  9

Tags: themovereturnifheredefareprint
1条回答
网友
1楼 · 发布于 2024-09-28 01:22:48

更新的丢失并不奇怪:您将getCompMove的结果放在变量pile中,以后不再使用它。我想如果你加上

pile1, pile2 = pile

或者

pile1, pile2 = getCompMove(...)

它会表现得更好。顺便说一下,在学习Python时,应该尝试将所有单独的函数转换为包含两个堆的类中的方法:这样会更清晰,传入和传出的变量也会更少。系统地隐藏具有相同名称的局部变量对于读者来说是一件痛苦的事情,除非在注释中声明。你知道吗

相关问题 更多 >

    热门问题