第 5 步:让我们更改列表的名称以对应它们将保存的数据。

变量名很重要。它们让我们稍后在程序中使用精灵、对象和列表。

  • 第一个列表将存储温度数据,因此将第一个列表的名称从my_list更改为data_list
  • 第二个列表将存储时间!将第二个列表的名称从my_list更改为time_list
  • 点击运行。然后点击提交接下来继续。

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

microbit = codesters.Microbit() microbit.show_string("hello") data = microbit.get_temp() microbit.show_number(data) my_list = [] my_list = []
  • Run Code
  • 提交作品
  • 下个活动
  • Show Console
  • Reset Code Editor
  • Codesters How To (opens in a new tab)