This is easily the dumbest question I have ever had to ask, but I'm trying to use Turtle to code something that will take English inputs and draw letters in an alphabet I created for a D&D campaign. I'm trying to draw a letter like this:
Letter I'm trying to draw. Similar to a candy cane?
The code I have currently is this:
turtle.pendown()
turtle.seth(270)
turtle.forward(50)
turtle.back(50)
turtle.seth(90)
turtle.circle(25,150)
But the problem is that the result draws what I want backwards. I tried changing the heading to everything I can think of, but nothing makes the shape I want. What am I missing?