### ---------------------------------- ### MINIMUM TECHNICAL REQUIREMENTS ### ### ---------------------------------- # 1) Set up your stage and sprite. # Position your sprite at the start # of your first letter. stage.set_background("spring") sprite = codesters.Sprite("flower1") sprite.set_speed(2) sprite.glide_to(-200, 200) # 2) Use the Pen Down command from the # Actions toolkit. Use Set Color to change the color. sprite.pen_down() sprite.pen_width(20) sprite.set_color("purple") # 3) Start Drawing your letter! # Use a glide to command to get to the next corner. sprite.move_down(400) sprite.move_right(100) # Use the Pen Up command to move your sprite # without drawing. sprite.pen_up() sprite.move_right(150) sprite.pen_down() sprite.move_up(400) sprite.go_to(100, 200) sprite.go_to(150, 100) sprite.go_to(50, 0) sprite.go_to(150, -100) sprite.go_to(50, -200) sprite.pen_up() sprite.glide_to(150, -200)