Для рисования слона с помощью библиотеки Turtle в Python можно использовать следующий код:
import turtle
t = turtle.Turtle()
t.speed(0)
# Тело слона
t.fillcolor("grey")
t.begin_fill()
t.circle(100)
t.end_fill()
# Голова слона
t.penup()
t.goto(-30, 120)
t.pendown()
t.fillcolor("lightgrey")
t.begin_fill()
t.circle(40)
t.end_fill()
# Глаза
t.penup()
t.goto(-30, 160)
t.pendown()
t.fillcolor("white")
t.begin_fill()
t.circle(10)
t.end_fill()
t.penup()
t.goto(-50, 160)
t.pendown()
t.begin_fill()
t.circle(10)
t.end_fill()
# Хобот
t.penup()
t.goto(0, 80)
t.pendown()
t.fillcolor("grey")
t.begin_fill()
t.goto(50, 100)
t.goto(30, 30)
t.goto(0, 80)
t.end_fill()
# Ноги
t.penup()
t.goto(-70, -100)
t.pendown()
t.fillcolor("grey")
t.begin_fill()
t.goto(-70, -150)
t.goto(-40, -200)
t.goto(-60, -250)
t.goto(-80, -200)
t.goto(-90, -150)
t.goto(-70, -100)
t.end_fill()
t.penup()
t.goto(70, -100)
t.pendown()
t.fillcolor("grey")
t.begin_fill()
t.goto(70, -150)
t.goto(40, -200)
t.goto(60, -250)
t.goto(80, -200)
t.goto(90, -150)
t.goto(70, -100)
t.end_fill()
t.hideturtle()
turtle.done()
Этот код рисует общую форму слона, но может быть улучшен и доработан в зависимости от конкретных требований и желаемого вида слона.