PASO 16: ¡Nuestra declaración if nunca será verdadera, porque estamos comparando un número con una "string" (texto)!

  • Encuentra la línea de código que parece si · distancia · == · "sí" : ¬
  • Cambie el == ( es exactamente igual a ) a <= ( es menor o igual que )
  • Cambie "yes" a 200 . Asegúrese de que 200 no esté entre comillas. Obtendrá un error si es así!

Intenta hacer clic Corre y mira el escenario. ¡Prueba más de una vez! ¿Cuándo dice algo Emma?

To navigate the page using the TAB key, first press ESC to exit the code editor.

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 == "yes": # add your code here emma.say("I am a sprite.")
  • Run Code
  • Enviar Trabajo
  • Actividad Siguiente
  • Show Console
  • Reset Code Editor
  • Codesters How To (opens in a new tab)