演示 2:条件是一段代码,它告诉您的程序在某事为真执行一组命令。

有条件的有四个部分。

  • 点击运行以查看 if 语句并了解它是如何工作的!
  • 尝试多次运行演示,看看有什么变化!
  • 完成后,单击提交接下来继续。

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

x1 = 0 y1 = -180 sprite = codesters.Sprite("person1", x1, y1) x2 = random.randint(30,240) y2 = random.randint(-180,-60) butterfly = codesters.Sprite("butterfly", x2, y2) butterfly.set_size(.5) delta_x = x2 - x1 delta_y = y2 - y1 distance = math.sqrt((delta_x**2) + (delta_y**2))
  • Run Code
  • 提交作品
  • 下个活动
  • Show Console
  • Reset Code Editor
  • Codesters How To (opens in a new tab)