1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import turtle t = turtle.Turtle() turtle.bgpic("castle.gif") t.penup() t.goto(-100,100) t.pendown() t.color("#806050") t.width(10) t.right(90) t.forward(200) for n in range(4): t.left(90) t.forward(200) | cs |