Задание на Pygame На Python . НУЖНО ДОБАВИТЬ ФОН , ИЗОБРАЖЕНИЕ Я СКИНУЛ ,И НАЗВАТЬ ЕГО fon К ЭТОМУ КОДУ ЧТОБ ОНА РАБОТАЛА: import pygame from random import randint
HEIGHT = 70 WIDTH = 40 SPEED = 2 y = 0 - HEIGHT position = randint(1,3) if position == 1: x = 10 elif position == 2: x = 130 elif position == 3: x = 250
gameon = True while gameon: events = pygame.event.get() for i in events: if i.type == pygame.QUIT: exit() elif i.type == pygame.KEYDOWN: if i.key == pygame.K_LEFT: if xpos > 10: xpos -= 120 if i.key == pygame.K_RIGHT: if xpos < 250: xpos += 120
if y >= WIN_HEIGHT + HEIGHT: SPEED += 0.7 y = 0 - HEIGHT position = randint(1,3) if position == 1: x = 10 elif position == 2: x = 130 elif position == 3: x = 250 else: y += SPEED sc.fill(fon) sc.blit(z, (x, y)) sc.blit(kor, (xpos, 405)) pygame.display.update()