EXTEND: Now customize your program how ever you want! Change at least three things about your program.

  1. Change the background by changing the "string" in .set_background().
  2. Change the strings in both .say() to say something else!
  3. Change the integer in if·distance·<=·200:¬and run your code to see the difference it makes.
  4. When you're done, click Submit and Next.

stage.set_background("schoolentrance") stage.wait(2) stage.create_grid_overlay(50, "blue") stage.set_background_color("azure") emma = codesters.Sprite("person1") emma.set_size(0.5) michael = codesters.Sprite("person2") michael.set_size(0.5) emma_x = random.randint(-230,230) emma_y = random.randint(-230,230) emma.go_to(emma_x, emma_y) michael_x = random.randint(-230,230) michael_y = random.randint(-230,230) michael.go_to(michael_x, michael_y) delta_x = emma_x - michael_x delta_y = emma_y - michael_y distance = math.sqrt((delta_x**2) + (delta_y**2)) if distance <= 200: # add your code here emma.say("I am a sprite.") emma.load_image("person1_masked") michael.load_image("person2_masked") else: michael.say("I am a sprite.")