簡體   English   中英

語法錯誤 Python:意外縮進

[英]Syntax Error Python: Unexpected Indent

我最近開始學習 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()

我收到一個錯誤提示

意外的縮進

向右移動這部分:

pygame.quit()
sys.exit()

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM