Réalisez un compte à rebours de 9 à 0.
from microbit import * for i in range(9,-1,-1): display.show(str(i)) sleep(1000)