Найти - Пользователи
Полная версия: pygame не отвечает
Начало » Python для новичков » pygame не отвечает
1
OlegBebrov
Помогите пж, после запуска кода окно pygame тупо не отвечает и все, что делать?
Код:
import pygame
pygame.init()
screen = pygame.display.set_mode((500, 500))
while True:
pygame.display.update()

py.user.next
  
import pygame
 
pygame.init()
screen = pygame.display.set_mode((500, 500))
 
done = False
while not done:
    for event in pygame.event.get(): 
        if event.type == pygame.KEYDOWN and event.key == pygame.K_q:
            done = True
    pygame.display.flip()
 
pygame.quit()
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB