1.Create a window (800 x 600 pixels);. 2. Set title “ Space Invaders“;
3. Find a space image and set to background.
Использовать Pygame​

IgorGr1ef IgorGr1ef    3   17.04.2021 08:16    1

Ответы
Master2111 Master2111  17.05.2021 08:21

Подходящую картинку найдете сами ;)

import pygame

pygame.init()

screen = pygame.display.set_mode((800, 600))

pygame.display.set_caption('Space Invaders')

bg = pygame.image.load("путь к картинке")

run = True

while run:

   for event in pygame.event.get():

       screen.blit(bg, (0, 0))

       pygame.display.update()

       if event.type == pygame.QUIT:

           run = False


1.Create a window (800 x 600 pixels);. 2. Set title “ Space Invaders“; 3. Find a space image and set
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика