Let's change the sprite's position to center it between the top and the bottom of the stage.

The second number in .go_to() is the y-coordinate. It controls where the sprite is up and down.

  • Change the second number (the y-coordinate) in .go_to() to 0.

stage.set_background("city") sprite = codesters.Sprite("bike") sprite.set_size(0.5) sprite.go_to(-200, -50)