Python 为什么我的代码只访问第二个while循环?

Python 为什么我的代码只访问第二个while循环?,python,python-3.x,Python,Python 3.x,嗨,我有一点代码Wormy.py,我试图添加一个传送门户。现在它工作了,但只在1个街区,出于某种原因,它只进入第二个whili循环,你知道为什么以及如何修复它吗 我试着添加其他内容:返回,但这不起作用,休息也不起作用 # Wormy (a Nibbles clone) # By Al Sweigart al@inventwithpython.com # http://inventwithpython.com/pygame # Released under a "Simplified BSD" l

嗨,我有一点代码Wormy.py,我试图添加一个传送门户。现在它工作了,但只在1个街区,出于某种原因,它只进入第二个whili循环,你知道为什么以及如何修复它吗

我试着添加其他内容:返回,但这不起作用,休息也不起作用

# Wormy (a Nibbles clone)
# By Al Sweigart al@inventwithpython.com
# http://inventwithpython.com/pygame
# Released under a "Simplified BSD" license

import random, pygame, sys
from pygame.locals import *

FPS = 15
WINDOWWIDTH = 640
WINDOWHEIGHT = 480
CELLSIZE = 20
assert WINDOWWIDTH % CELLSIZE == 0, "Window width must be a multiple of cell size."
assert WINDOWHEIGHT % CELLSIZE == 0, "Window height must be a multiple of cell size."
CELLWIDTH = int(WINDOWWIDTH / CELLSIZE)
CELLHEIGHT = int(WINDOWHEIGHT / CELLSIZE)

#             R    G    B
WHITE     = (255, 255, 255)
BLACK     = (  0,   0,   0)
RED       = (255,   0,   0)
GREEN     = (  0, 255,   0)
DARKGREEN = (  0, 155,   0)
DARKGRAY  = ( 40,  40,  40)
BGCOLOR = BLACK

UP = 'up'
DOWN = 'down'
LEFT = 'left'
RIGHT = 'right'

HEAD = 0 # syntactic sugar: index of the worm's head

def main():
    global FPSCLOCK, DISPLAYSURF, BASICFONT

    pygame.init()
    FPSCLOCK = pygame.time.Clock()
    DISPLAYSURF = pygame.display.set_mode((WINDOWWIDTH, WINDOWHEIGHT))
    BASICFONT = pygame.font.Font('freesansbold.ttf', 18)
    pygame.display.set_caption('Wormy')

    showStartScreen()
    while True:
        runGame()
        showGameOverScreen()


def runGame():
    worm1 = False
    # Set a random start point.
    startx = random.randint(5, CELLWIDTH - 6)
    starty = random.randint(5, CELLHEIGHT - 6)
    wormCoords = [{'x': startx,     'y': starty},
                  {'x': startx - 1, 'y': starty},
                  {'x': startx - 2, 'y': starty}]
    direction1 = RIGHT

    startx_wormhole1 = 2
    starty_wormhole1 = 2
    startx_wormhole2 = 29
    starty_wormhole2 = 2
    wallCoords1 = [{'x': startx_wormhole1,  'y': starty_wormhole1}]
    wallCoords2 = [{'x': startx_wormhole2, 'y': starty_wormhole2}]


    # Start the apple in a random place.
    apple = getRandomLocation()

    while True:  # main game loop
        for event in pygame.event.get():  # event handling loop
            if event.type == QUIT:
                terminate()
            elif event.type == KEYDOWN:
                if (event.key == K_LEFT) and direction1 != RIGHT:  # snake 1
                    direction1 = LEFT
                elif (event.key == K_RIGHT) and direction1 != LEFT:
                    direction1 = RIGHT
                elif (event.key == K_UP) and direction1 != DOWN:
                    direction1 = UP
                elif (event.key == K_DOWN) and direction1 != UP:
                    direction1 = DOWN

        # check if the worm1 has hit itself or the edge
        if wormCoords[HEAD]['x'] == -1 or wormCoords[HEAD]['x'] == CELLWIDTH or wormCoords[HEAD]['y'] == -1 or \
                wormCoords[HEAD]['y'] == CELLHEIGHT:
            if direction1 == UP:
                newHead = {'x': wormCoords[HEAD]['x'], 'y': CELLHEIGHT - 1}
            elif direction1 == DOWN:
                newHead = {'x': wormCoords[HEAD]['x'], 'y': 0}
            elif direction1 == LEFT:
                newHead = {'x': CELLWIDTH - 1, 'y': wormCoords[HEAD]['y']}
            elif direction1 == RIGHT:
                newHead = {'x': 0, 'y': wormCoords[HEAD]['y']}
            worm1 = True




        if not worm1:
            if direction1 == UP:
                newHead = {'x': wormCoords[HEAD]['x'], 'y': wormCoords[HEAD]['y'] - 1}
            elif direction1 == DOWN:
                newHead = {'x': wormCoords[HEAD]['x'], 'y': wormCoords[HEAD]['y'] + 1}
            elif direction1 == LEFT:
                newHead = {'x': wormCoords[HEAD]['x'] - 1, 'y': wormCoords[HEAD]['y']}
            elif direction1 == RIGHT:
                newHead = {'x': wormCoords[HEAD]['x'] + 1, 'y': wormCoords[HEAD]['y']}
        else:
            worm1 = False

        print(newHead)

        if newHead in wallCoords2:
            if direction1 == RIGHT:
                newHead = {'x': startx_wormhole1, 'y': starty_wormhole1}
            elif direction1 == LEFT:
                newHead = {'x': startx_wormhole1, 'y': starty_wormhole1}
            elif direction1 == UP:
                newHead = {'x': startx_wormhole1, 'y': starty_wormhole1}
            elif direction1 == DOWN:
                newHead = {'x': startx_wormhole1, 'y': starty_wormhole1}
            else:
                if newHead in wallCoords1:
                    if direction1 == RIGHT:
                        newHead = {'x': startx_wormhole2, 'y': starty_wormhole2}
                    elif direction1 == LEFT:
                        newHead = {'x': startx_wormhole2, 'y': starty_wormhole2}
                    elif direction1 == UP:
                        newHead = {'x': startx_wormhole2, 'y': starty_wormhole2}
                    elif direction1 == DOWN:
                        newHead = {'x': startx_wormhole2, 'y': starty_wormhole2}



        # check if worm has eaten an apply
        if wormCoords[HEAD]['x'] == apple['x'] and wormCoords[HEAD]['y'] == apple['y']:
            # don't remove worm's tail segment
            apple = getRandomLocation() # set a new apple somewhere
        else:
            del wormCoords[-1] # remove worm's tail segment



        wormCoords.insert(0, newHead)
        DISPLAYSURF.fill(BGCOLOR)
        drawGrid()
        drawWorm(wormCoords)
        drawWall(wallCoords1)
        drawWall(wallCoords2)
        drawApple(apple)
        drawScore(len(wormCoords) - 3)
        pygame.display.update()
        FPSCLOCK.tick(FPS)




def drawPressKeyMsg():
    pressKeySurf = BASICFONT.render('Press a key to play.', True, DARKGRAY)
    pressKeyRect = pressKeySurf.get_rect()
    pressKeyRect.topleft = (WINDOWWIDTH - 200, WINDOWHEIGHT - 30)
    DISPLAYSURF.blit(pressKeySurf, pressKeyRect)


def checkForKeyPress():
    if len(pygame.event.get(QUIT)) > 0:
        terminate()

    keyUpEvents = pygame.event.get(KEYUP)
    if len(keyUpEvents) == 0:
        return None
    if keyUpEvents[0].key == K_ESCAPE:
        terminate()
    return keyUpEvents[0].key


def showStartScreen():
    titleFont = pygame.font.Font('freesansbold.ttf', 100)
    titleSurf1 = titleFont.render('Wormy!', True, WHITE, DARKGREEN)
    titleSurf2 = titleFont.render('Wormy!', True, GREEN)

    degrees1 = 0
    degrees2 = 0
    while True:
        DISPLAYSURF.fill(BGCOLOR)
        rotatedSurf1 = pygame.transform.rotate(titleSurf1, degrees1)
        rotatedRect1 = rotatedSurf1.get_rect()
        rotatedRect1.center = (WINDOWWIDTH / 2, WINDOWHEIGHT / 2)
        DISPLAYSURF.blit(rotatedSurf1, rotatedRect1)

        rotatedSurf2 = pygame.transform.rotate(titleSurf2, degrees2)
        rotatedRect2 = rotatedSurf2.get_rect()
        rotatedRect2.center = (WINDOWWIDTH / 2, WINDOWHEIGHT / 2)
        DISPLAYSURF.blit(rotatedSurf2, rotatedRect2)

        drawPressKeyMsg()

        if checkForKeyPress():
            pygame.event.get() # clear event queue
            return
        pygame.display.update()
        FPSCLOCK.tick(FPS)
        degrees1 += 3 # rotate by 3 degrees each frame
        degrees2 += 7 # rotate by 7 degrees each frame


def terminate():
    pygame.quit()
    sys.exit()


def getRandomLocation():
    return {'x': random.randint(0, CELLWIDTH - 1), 'y': random.randint(0, CELLHEIGHT - 1)}


def showGameOverScreen():
    gameOverFont = pygame.font.Font('freesansbold.ttf', 150)
    gameSurf = gameOverFont.render('Game', True, WHITE)
    overSurf = gameOverFont.render('Over', True, WHITE)
    gameRect = gameSurf.get_rect()
    overRect = overSurf.get_rect()
    gameRect.midtop = (WINDOWWIDTH / 2, 10)
    overRect.midtop = (WINDOWWIDTH / 2, gameRect.height + 10 + 25)

    DISPLAYSURF.blit(gameSurf, gameRect)
    DISPLAYSURF.blit(overSurf, overRect)
    drawPressKeyMsg()
    pygame.display.update()
    pygame.time.wait(500)
    checkForKeyPress() # clear out any key presses in the event queue

    while True:
        if checkForKeyPress():
            pygame.event.get() # clear event queue
            return

def drawScore(score):
    scoreSurf = BASICFONT.render('Score: %s' % (score), True, WHITE)
    scoreRect = scoreSurf.get_rect()
    scoreRect.topleft = (WINDOWWIDTH - 120, 10)
    DISPLAYSURF.blit(scoreSurf, scoreRect)


def drawWorm(wormCoords):
    for coord in wormCoords:
        x = coord['x'] * CELLSIZE
        y = coord['y'] * CELLSIZE
        wormSegmentRect = pygame.Rect(x, y, CELLSIZE, CELLSIZE)
        pygame.draw.rect(DISPLAYSURF, DARKGREEN, wormSegmentRect)
        wormInnerSegmentRect = pygame.Rect(x + 4, y + 4, CELLSIZE - 8, CELLSIZE - 8)
        pygame.draw.rect(DISPLAYSURF, GREEN, wormInnerSegmentRect)

def drawWall(wallCoords):
    for coord in wallCoords:
        x = coord['x'] * CELLSIZE
        y = coord['y'] * CELLSIZE
        wallSegmentRect = pygame.Rect(x, y, CELLSIZE, CELLSIZE)
        pygame.draw.rect(DISPLAYSURF, WHITE, wallSegmentRect)

def drawApple(coord):
    x = coord['x'] * CELLSIZE
    y = coord['y'] * CELLSIZE
    appleRect = pygame.Rect(x, y, CELLSIZE, CELLSIZE)
    pygame.draw.rect(DISPLAYSURF, RED, appleRect)


def drawGrid():
    for x in range(0, WINDOWWIDTH, CELLSIZE): # draw vertical lines
        pygame.draw.line(DISPLAYSURF, DARKGRAY, (x, 0), (x, WINDOWHEIGHT))
    for y in range(0, WINDOWHEIGHT, CELLSIZE): # draw horizontal lines
        pygame.draw.line(DISPLAYSURF, DARKGRAY, (0, y), (WINDOWWIDTH, y))


if __name__ == '__main__':
    main()

希望有人能帮忙

我想说几点: 在外部循环中,使用变量newHead作为数据结构wallCoords的实例,然后为循环中的wallCoords分配一个新值。最好将新坐标指定给另一个变量

在内部循环中,您正在对newHead变量执行完全相同的重新分配。但是内部循环中的另一个问题是,您再次使用newHead作为数据结构wallCoords的实例


由于不断为newHead赋值可能无法解决最初的问题,因此它肯定会解决围绕代码所需输出的问题。

second当循环位于第一个循环内时,这是主要问题。尝试重新缩进,然后重新测试代码

while newHead in wallCoords1:
    if direction1 == RIGHT:
        newHead = {'x': startx_wormhole2, 'y': starty_wormhole2}
    elif direction1 == LEFT:
        newHead = {'x': startx_wormhole2, 'y': starty_wormhole2}
    elif direction1 == UP:
        newHead = {'x': startx_wormhole2, 'y': starty_wormhole2}
    elif direction1 == DOWN:
        newHead = {'x': startx_wormhole2, 'y': starty_wormhole2}



while newHead in wallCoords2:
    if direction1 == RIGHT:
        newHead = {'x': startx_wormhole1, 'y': starty_wormhole1}
    elif direction1 == LEFT:
        newHead = {'x': startx_wormhole1, 'y': starty_wormhole1}
    elif direction1 == UP:
        newHead = {'x': startx_wormhole1, 'y': starty_wormhole1}
    elif direction1 == DOWN:
        newHead = {'x': startx_wormhole1, 'y': starty_wormhole1}

关于Python缩进的更多信息

您好,您可以修复缩进plz吗,当前您无法访问第二个循环,而不访问第一个循环。可能是第一个块正在工作,但结果被第二个块覆盖了?您确认了吗?这里显然存在一些缩进问题,在python中,缩进非常重要。但除此之外,你能给我们壁橱吗?如果该循环为空,您将不会进入该循环。您好,欢迎使用SO。如果没有一个适当的、最小的、完整的、可验证的例子,就不可能回答你的问题。请相应地编辑您的帖子。这是我的代码中stackoverflow的一个输入错误。就像您daid一样,但仍然接受第二个循环WallCoords1=[{'x':2'y':2}]我尝试过,但它仍然接受第二个循环,对我来说没有意义。为什么要跳过第一个while循环?@Kaochi我们中的一些人已经提到,如果不知道变量的有效值,就不可能回答你的问题。请编辑您的问题,以提供一个最小的完整和可验证的示例cf。我添加了完整的代码,我使用MU编辑器运行代码,我将while更改为if,但仍然不工作我必须做什么来修复此问题?我会这样做。而wallCoords2中的newHead2:if direction1==RIGHT:newHead={'x':startx\u wormhole1,'y':starty\u wormhole1}。。。还有很多问题,我想wallCoords2是一个列表或字典,但在循环中,您没有使用来自数据结构wallCoords2的值。我还想问,值方向1是在哪里定义的,它是否来自wallCoords2?但这两个循环是否嵌套?