Activity: Move Glorp
I'M FINISHED WITH HOUR OF CODE!

STEP 7: Now we can change the coordinates to control glorp's location.

  • Change the first number ( x-coordinate) in the .go_to() command to 100.
  • Change the second number (y-coordinate) in the .go_to() command to -125.

stage.set_background("moon") sprite = codesters.Sprite("astronaut1") sprite.go_to(-125, -150) glorp = codesters.Sprite("alien1") glorp.go_to(-100, -50)
Support