简体   繁体   中英

Syntax Error Python: Unexpected Indent

I recently started learning Python. I am unable to resolve this error:

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()

I get an error that says

unexpected indent

Move right this part:

pygame.quit()
sys.exit()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM