I want to convert letters "M", "E" and "D" into maritime flags
from turtle import *
def drawInitials (ref=(0,0), w=100, spacing=10):
"""Params:
ref (int 2-tuple): bottom right corner, the reference point
w (int): width of each letter, in pixels
spacing (int): separation between consecutive letters, in pixels
"""
speed(0)
drawInitials ((0,0), 100, 10)
I should get three flags as show in the figure.