Skip to main content

Hola Mundo

2024-09-14 13_48_48-Configuración.png

from microbit import *


while True:
    display.scroll('Hola Mundo')

 

 

# Imports go at the top
from microbit import *


# Code in a 'while True:' loop repeats forever
while True:
    display.show(Image.SMILE)
    sleep(1000)
    display.scroll('Hola mundo')