Ответ:
код нижеее
Объяснение:
import turtle
# Настройка экрана
screen = turtle.Screen()
screen.setup(400, 400)
screen.bgcolor("white")
# Настройка черепашки
t = turtle.Turtle()
t.speed(0)
t.hideturtle()
# Рисуем голову
t.penup()
t.goto(0, -100)
t.pendown()
t.begin_fill()
t.fillcolor("yellow")
t.circle(100)
t.end_fill()
# Рисуем глаза
t.goto(-40, 20)
t.fillcolor("black")
t.circle(20)
t.goto(40, 20)
# Рисуем рот
t.goto(-60, -30)
t.pensize(10)
t.right(45)
t.forward(80)
# Завершаем программу
turtle.done()
ДАЙ ПЖ ЛУЧШИЙ ОТВЕТ
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
код нижеее
Объяснение:
import turtle
# Настройка экрана
screen = turtle.Screen()
screen.setup(400, 400)
screen.bgcolor("white")
# Настройка черепашки
t = turtle.Turtle()
t.speed(0)
t.hideturtle()
# Рисуем голову
t.penup()
t.goto(0, -100)
t.pendown()
t.begin_fill()
t.fillcolor("yellow")
t.circle(100)
t.end_fill()
# Рисуем глаза
t.penup()
t.goto(-40, 20)
t.pendown()
t.begin_fill()
t.fillcolor("black")
t.circle(20)
t.end_fill()
t.penup()
t.goto(40, 20)
t.pendown()
t.begin_fill()
t.fillcolor("black")
t.circle(20)
t.end_fill()
# Рисуем рот
t.penup()
t.goto(-60, -30)
t.pendown()
t.pensize(10)
t.right(45)
t.forward(80)
# Завершаем программу
turtle.done()
ДАЙ ПЖ ЛУЧШИЙ ОТВЕТ