I created a code and easily got letters, but now I just understood that I don't know how to make them fill. I made only an E and an L, but I don't understand how to make O and G fill.
This is what I tried with G.
import turtle
t = turtle.Turtle()
t.speed(50) # 1:slowest, 3:slow, 5:normal, 10:fast, 0:fastest
t.circle(-100,-180)
t.right(90)
t.penup()
t.setpos(0, 0)
t.pendown()
t.right(180)
t.forward(20)
t.right(270)
t.circle(-80,-180)
t.right(90)
t.forward(60)
t.left(90)
t.forward(40)
t.right(90)
t.forward(20)
t.right(90)
t.forward(60)
t.right(241)
t.circle(80,-100)
t.hideturtle()