import turtle
t = turtle.Turtle()
# draw the face
t.circle(100)
t.penup()
t.goto(0, 150)
t.pendown()
t.circle(50)
# draw the long nose
t.penup()
t.goto(0, 100)
t.pendown()
t.right(45)
t.forward(100)
t.left(90)
t.forward(50)
t.left(90)
t.forward(50)
t.left(90)
t.forward(50)
t.right(90)
t.forward(50)
t.right(90)
t.forward(50)
t.right(90)
t.forward(50)
t.left(90)
t.forward(50)
# add the funny text
t.penup()
t.goto(0, -200)
t.write("I nose what I'm doing!", align="center", font=("Arial", 24, "bold"))
turtle.done()
To embed this project on your website, copy the following code and paste it into your website's HTML: