Here I'm trying move which is blotted on the screen but the image moving without clearing the previous one
balloon=pygame.image.load("BALLON 1".png)
Bal_x=0
while true:
for event in pygame.event.get():
if event.type==pygame.QUIT:
pygame.quit()
sys.exit()
Bal_x+=1
screen.blit(BALLON,(Bal_x.120))
pygame.display.update()
clock.tick(120)