Can you write a program to send SOS on one of your LEDs? You can send it using any colour you like. To use this, you'll need to use the sleep command which requires the 'time' library. The code shown here won't look like it's doing anything because it will just wait 1 second and then not do anything else.
You'll need to use a combination of LED commands and 'time.sleep' commands to send your SOS (three short blinks, three long blinks, three short blinks again). You'll want delays less than 1 second, so you can change the '1' to a fraction of a second.
Experiment with the delays until you get a recognisable pattern, and then put your code in a big loop so that it flashes 'SOS' twice. You'll want a bigger delay between each 'SOS' than you have between each letter.
Remember, you'll still need the code to import the 'invent' library' to use the LEDs, so you'll have to add this at the top either above or below the 'import time' command.