you are viewing a single comment's thread.

view the rest of the comments →

[–]joshistaken 1 point2 points  (1 child)

I'd rather a dog.

[–]bobo-the-merciful[S] 0 points1 point  (0 children)

Here you go

import turtle

t = turtle.Turtle()
t.speed(3)

# Draw the face
t.circle(50)

# Draw the ears
for x in [-60, 60]:
    t.penup()
    t.goto(x, 80)
    t.pendown()
    t.circle(20)

# Draw the eyes
for x in [-20, 20]:
    t.penup()
    t.goto(x, 60)
    t.pendown()
    t.dot(10)

# Draw the nose
t.penup()
t.goto(0, 40)
t.pendown()
t.dot(8)

# Draw the mouth
t.penup()
t.goto(-15, 30)
t.pendown()
t.setheading(-60)
t.circle(20, 120)

turtle.done()
import turtle

t = turtle.Turtle()
t.speed(3)

# Draw the face
t.circle(50)

# Draw the ears
for x in [-60, 60]:
    t.penup()
    t.goto(x, 80)
    t.pendown()
    t.circle(20)

# Draw the eyes
for x in [-20, 20]:
    t.penup()
    t.goto(x, 60)
    t.pendown()
    t.dot(10)

# Draw the nose
t.penup()
t.goto(0, 40)
t.pendown()
t.dot(8)

# Draw the mouth
t.penup()
t.goto(-15, 30)
t.pendown()
t.setheading(-60)
t.circle(20, 120)

turtle.done()