警告:这个程序有一个错误,这意味着我们需要调试它!让我们找出逻辑错误

规则:我们使用缩进来组织我们的程序。如果我们想要 if 语句中的某些内容,它需要在它前面有一个黄色块····以表明它缩进了四个空格

  • 点击运行并在答案气泡中输入正方形。然后看舞台,看看有什么问题。
  • 调试此程序,使圆圈在用户回答"circle"时出现。

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

stage.set_background_color("azure") sprite = codesters.Sprite("snowman") sprite.go_to(-125, -62) choice = sprite.ask("Square or circle?") choice = choice.lower() if choice == "square": sprite.say("square!") sprite = codesters.Square(0, 0, 62, "green") if choice == "circle": sprite.say("circle!") sprite = codesters.Circle(0, 0, 94, "blue")
  • Run Code
  • 提交作品
  • 下个活动
  • Show Console
  • Reset Code Editor
  • Codesters How To (opens in a new tab)