im having this problem with my code in pygame
the parts that are commented out are the ones i used as tests when i was starting with image loading. when i run my code the images dont display
ground2_surface = pygame.image.load('Assets/ground-export.png')
ground3_surface = pygame.image.load('Assets/ground-export.png')
ground4_surface = pygame.image.load('Assets/ground-export.png')
# floor_surface = pygame.image.load('Assets/floorbig.jpg')
# sky_surface = pygame.image.load('Assets/skyex.png')
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
exit()
screen.blit(ground_surface,(0,300))
screen.blit(ground2_surface,(100,600))
screen.blit(ground3_surface,(0,900))
screen.blit(ground4_surface,(0,1200))
pygame.display.update()
clock.tick(60)```