语法错误Python:意外缩进

时间:2016-03-08 15:49:02

标签: python pygame

我最近开始学习Python。我无法解决此错误:

import pygame, sys
from pygame.locals import *

pygame.init()

DISPLAYSURF = pygame.display.set_mode((400, 300))
pygame.display.set_caption('Hello World!')

while True:
    for event in pygame.event.get():
        if event.type == QUIT:

        pygame.quit()
        sys.exit()

        pygame.display.update()

我收到错误消息

  

意外缩进

1 个答案:

答案 0 :(得分:0)

向右移动此部分:

pygame.quit()
sys.exit()