from microbit import*
while True:
  for i in range (10) :
    display.show(str(i))
    sleep(500)
    display.show(" ")
    sleep(500)
    
