I was learning python and trying to make snake game using pygame library. I made a rectangle which moves using the pressing of keys but rather than moving one block it moves to the end of the block. Whenever i press in any direction whether it be up , left, right, or down rather than moving 1 box size it moves to the end of the other direction Could someone tell me why that happens.
import pygame
box_size = 50
num_box = 15
color1 = (169, 215, 81)
color2 = (169,250,81)
x = 0
y = 0
while True:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            pygame.quit()
            break
    keys = pygame.key.get_pressed()
    if keys[pygame.K_RIGHT]:
        if x < width - box_size:
            x = x + box_size
    if keys[pygame.K_LEFT]:
        if x > 0:
            x = x - box_size
    if keys[pygame.K_UP]:
        if y > 0:
            y = y - box_size
    if keys[pygame.K_DOWN]:
        if y < height - box_size:
            y = y + box_size
    print(x,y)
    for i in range(0,num_box):
        if i %2 == 0:
            for j in range(0,num_box):
                if j%2 == 0:
                    pygame.draw.rect(win, color1, (box_size*j, box_size*i, box_size, box_size))
                else:
                    pygame.draw.rect(win, color2, (box_size * j, box_size * i, box_size, box_size))
        else:
            for k in range(0,num_box):
                if k%2 == 0:
                    pygame.draw.rect(win, color2, (box_size*k, box_size*i, box_size, box_size))
                else:
                    pygame.draw.rect(win, color1, (box_size * k, box_size * i, box_size, box_size))
    pygame.draw.rect(win, (0, 0, 250), (x, y, box_size, box_size))
   
    # # rect(surface, color, (left, top, width, height))
    pygame.display.update()
    pass
 
    