Activity: Change the Color
I'M FINISHED WITH HOUR OF CODE!

STEP 15: Let's change the color of the sprite's pen.

  • Go to and drag out Set Color.
  • Change the pen color to "yellow" or choose another color that you like. You can find a list of color names here.

Hint: Make sure you don't delete the quotes around the color!

stage.set_background("field") sprite = codesters.Sprite("hedgehog") sprite.set_size(.5) sprite.pen_down()
Support