xxxxxxxxxx
'''From the interpreter dropdown list select MicroPython (Raspberry Pi Pico
The port dropdown menu can be left to automatically detect the Pico. Click
Ok to close. The Python Shell (also called REPL, Read, Eval, Print, Loop)
will now update to show that the Pico is connected and working.
'''
from machine import Pin
led = Pin(25, Pin.OUT)
led.toggle()