from time import sleep
from machine import Pin 
# time.sleep(0.1) # Wait for USB to become ready

leds = [Pin (12 , Pin.OUT) ,
        Pin (13 , Pin.OUT),
        Pin (14 , Pin.OUT)]

while True :
    for led in leds :
        led.on()
        sleep (1)
        led.off()

BOOTSELLED1239USBRaspberryPiPico©2020RP2-8020/21P64M15.00TTT