The Python Microbit reference shows how to make a custom boat image, which you can see pictured at the bottom.
Here is the code:
1 2 3 4 5 6 7 8 |
from microbit import * boat = Image( "05050:" "05050:" "999999:" "09990" ) display.show(boat) |