Do you want to build a snow man?
Do you want to build a snow man?
Adapt the code below to build or code a snowman!
Use a similar code as Line 17 to draw and eye
Add the body, Try adding some arms too, A hat would be nice!
from turtle import *
from shapes import *
# Create a turtle named Tommy:
tommy = Turtle()
tommy.shape("turtle")
tommy.speed(7)
wn = turtle.Screen()
wn.bgcolor('black')
# Draw three circles:
draw_circle(tommy, "white", 30, 25, 0)
draw_circle(tommy, "black", 7, 5, 32) #left eye
##ADD RIGHT EYE
###ADD A BODY
##ADD A HAT
###ADD LEFT MOUTH?
tommy.penup()
tommy.goto(0,-50)
# Write a little message:
tommy.penup()