import turtle
# Создаем экземпляр черепахи
t = turtle.Turtle()
# Задаем цвет пера
t.pencolor("red")
# Заполняем цветом
t.fillcolor("red")
# Начинаем заливку
t.begin_fill()
# Рисуем квадрат
for _ in range(4):
t.forward(100)
t.right(90)
# Завершаем заливку
t.end_fill()
# Завершаем программу по клику на окно
turtle.exitonclick()
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
x = [0, 1, 1, 0, 0]
y = [0, 0, 1, 1, 0]
ax.plot(x, y, color='red')
ax.set_xlim([-0.5, 1.5])
ax.set_ylim([-0.5, 1.5])
plt.show()
import turtle
# Создаем экземпляр черепахи
t = turtle.Turtle()
# Задаем цвет пера
t.pencolor("red")
# Заполняем цветом
t.fillcolor("red")
# Начинаем заливку
t.begin_fill()
# Рисуем квадрат
for _ in range(4):
t.forward(100)
t.right(90)
# Завершаем заливку
t.end_fill()
# Завершаем программу по клику на окно
turtle.exitonclick()
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
x = [0, 1, 1, 0, 0]
y = [0, 0, 1, 1, 0]
ax.plot(x, y, color='red')
ax.set_xlim([-0.5, 1.5])
ax.set_ylim([-0.5, 1.5])
plt.show()