0

私はPythonでプログラミングを始めたばかりで、このコードを書いています:

import sys, pygame
pygame.init()

size = width, height = 800, 600
speed = [2, 2]
black = 1, 1, 1

screen = pygame.display.set_mode(size)

ball = pygame.image.load("ball.bmp")
ballrect = ball.get_rect()
player1 = pygame.image.load("player1.png")
player1rect = player1.get_rect()

mod_x = mod_y = 0

while 1:
    for event in pygame.event.get():
        if event.type == pygame.QUIT: sys.exit()

        elif event.type == KEYDOWN:
            if event.key == K_W
                movex = 2
            if event.key == K_S
                movex = -2

    ballrect = ballrect.move(speed)
    if ballrect.left < 0 or ballrect.right > width:
        speed[0] = -speed[0]
    if ballrect.top < 0 or ballrect.bottom > height:
        speed[1] = -speed[1

    screen.fill(black)
    screen.blit(ball, ballrect)
    screen.blit(player1, player1rect)
    pygame.display.flip()

しかし、私がそれを実行しようとすると、次のように表示されます:

     File "C:\Users\User\Documents\Pong\pong.py", line 22
    elif event.type == KEYDOWN:
    ^
IndentationError: unexpected indent

このエラーを解決するには助けが必要です。私のポンコードでさらに失敗した場合は、書いてください。

4

1 に答える 1

1

とのインデントが一致ifelifません (タブとスペースが混在していました)。以前に持っていたもの:

if event.type == pygame.QUIT: sys.exit()

    elif event.type == KEYDOWN:

これで問題が解決するはずです:

if event.type == pygame.QUIT: 
    sys.exit()
elif event.type == KEYDOWN:
    ...
于 2013-07-09T18:22:10.633 に答える