Вот фрагмент кода для создания игрового окна размером 400 на 300 пикселей, закрашенного серым цветом:
```python
import pygame
pygame.init()
# Устанавливаем размеры окна
size = (400, 300)
screen = pygame.display.set_mode(size)
# Устанавливаем фоновый цвет
gray = (128, 128, 128)
screen.fill(gray)
pygame.display.set_caption("My Game Window")
pygame.display.flip()
# Цикл игры
done = False
while not done:
for event in pygame.event.get():
if event.type == pygame.QUIT:
done = True
# Закрываем окно игры
pygame.quit()
```
Відповідь:
width = 400
height = 300
screen = pygame.display.set_mode((width, height))
bg_color = (128, 128, 128)
screen.fill(bg_color)
running = True
while running:
running = False
Вот фрагмент кода для создания игрового окна размером 400 на 300 пикселей, закрашенного серым цветом:
```python
import pygame
pygame.init()
# Устанавливаем размеры окна
size = (400, 300)
screen = pygame.display.set_mode(size)
# Устанавливаем фоновый цвет
gray = (128, 128, 128)
screen.fill(gray)
pygame.display.set_caption("My Game Window")
pygame.display.flip()
# Цикл игры
done = False
while not done:
for event in pygame.event.get():
if event.type == pygame.QUIT:
done = True
# Закрываем окно игры
pygame.quit()
```
Відповідь:
import pygame
pygame.init()
width = 400
height = 300
screen = pygame.display.set_mode((width, height))
bg_color = (128, 128, 128)
screen.fill(bg_color)
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
pygame.display.flip()
pygame.quit()