Почему когда в онлайн компиляторе пишу этот код
import pygame
pygame.init()
screen = pygame.display.set_mode([640,480])
running = True
for event in pygame.event.get():
if event.type == pygame.QUIT
running = False
pygame.quit()
Выходит эта ошибка?
File "/tmp/sessions/2260800513a95fb4/main.py", line 6
if event.type = pygame.quit
^
IndentationError: expected an indented block
Answers & Comments
Ответ:
Попробуй так:
Объяснение: