现在是时候自定义你的贺卡了!

  • 选择你自己的 。尝试查看Holiday Sprites部分!
  • 更改 Text 以展示你自己的信息。
  • 添加新的 click()space_bar() 事件。你也可以添加新的
  • 点击 提交 以完成你的代码时间!点击 下一步 将你的技能应用到新的项目中!

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

stage.set_background("winter") sprite = codesters.Sprite("person12") sprite.go_to(-125, -150) frosty = codesters.Sprite("snowman") frosty.go_to(100, -125) snow = codesters.Sprite("snowflake3") snow.go_to(100, 75) gift = codesters.Sprite("present7", 0, -175) greeting = codesters.Text("Happy Holidays from Codesters!") greeting.go_to(0, 200) greeting.set_color("purple") def click(sprite): sprite.say("I hope your holidays are great!") sprite.turn_left(360) # add other actions... sprite.event_click(click) def space_bar(): # add other actions... snow.set_x_speed(5) snow.set_y_speed(2) stage.event_key("space", space_bar)
  • Run Code
  • 提交作品
  • 下个活动
  • Show Console
  • Reset Code Editor
  • Codesters How To (opens in a new tab)