import pygame
import time
import random
pygame.init()
white = (128, 0, 0)
yellow = (154, 205, 50)
black = (50, 50, 50)
red = (128, 50, 0)
eat = (178, 34, 34)
Jk_fon = (46, 139, 87)
dis_width = 600
dis_height = 400
dis = pygame.display.set_mode((dis_width, dis_height))...