import turtle wm = turtle.Screen() wm.bgcolor("wheat") tom = turtle.Turtle() def draw_tree(): # draw a tree tom.right(90) tom.forward(60) tom.left(90) tom.forward(40) tom.left(90) tom.forward(60) tom.right(90) tom.forward(120) tom.left(145) tom.forward(140) tom.right(145) tom.forward(90) tom.left(145) tom.forward(120) tom.right(145) tom.forward(60) tom.left(145) tom.forward(90) tom.left(70) tom.forward(90) tom.left(145) tom.forward(60) tom.right(145) tom.forward(120) tom.left(145) tom.forward(90) tom.right(145) tom.forward(140) tom.left(145) tom.forward(120) tom.penup() tom.goto(200, 20) tom.begin_fill() tom.color("chocolate") tom.pendown() draw_tree() tom.end_fill() tom.penup() tom.goto(-140,-100) tom.begin_fill() tom.color("saddlebrown") tom.pendown() draw_tree() tom.end_fill() tom.penup() tom.goto(60, -200) tom.begin_fill() tom.color("brown") tom.pendown() draw_tree() tom.end_fill() wm.mainloop()