Loading...

Checkpoint 1 - Getting started with Python for micro:bit
Quiz by Jonathan Saurine
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
from microbit import *What is the purpose of line 2 in the following code?
from microbit import* display.show(Image.HEART_SMALL) sleep(500) display.show(Image.HEART) sleep(500) display.show(Image.HEART_SMALL) sleep(500) display.show(Image.HEART) sleep(500)from microbit import* display.scroll('I') display.show(Image.HEART) sleep(1000) display.scroll('MUSIC!')5 on the micro:bit LED display?from microbit import* sleep(1500)from microbit import* display.show(Image.CONFUSED) sleep(2000) display.clear()Image.ALL_CLOCKS represent?from microbit import* display.show(Image.CLOCK12) sleep(2000) display.show(Image.CLOCK3)sleep() function?from microbit import* display.show(Image.GHOST) sleep(5000) display.clear()microbit import *, what is the purpose of the * symbol?