### ---------------------------------- ### MINIMUM TECHNICAL REQUIREMENTS ### ### ---------------------------------- # 1) Choose a background image stage.set_background("summer") # 2) Choose a sprite. sprite = codesters.Sprite("butterfly") # 3) Add at least 3 actions or say commands # to give your program a story sprite.move_down(150) sprite.move_up(200) sprite.move_right(50) sprite.turn_right(360) sprite.say("Click on me!") # 4) Add a click event with actions and # say commands inside the click event. def click(sprite): sprite.say("Enjoy Your Summer!") sprite.set_say_color("blue") # add other actions... sprite.event_click(click)