код:
import turtle
turtle.shape('turtle')
turtle.color('yellow')
turtle.begin_fill()
turtle.circle(50)
turtle.end_fill()
turtle.penup()
turtle.goto(0, 100)
turtle.pendown()
turtle.color('blue')
turtle.begin_fill()
turtle.circle(50)
turtle.end_fill()
turtle.penup()
turtle.goto(100, 0)
turtle.pendown()
turtle.color('red')
turtle.begin_fill()
turtle.circle(50)
turtle.end_fill()
turtle.penup()
turtle.goto(-100, 0)
turtle.pendown()
turtle.color('green')
turtle.begin_fill()
turtle.circle(50)
turtle.end_fill()
turtle.penup()
turtle.goto(0, -100)
turtle.pendown()
turtle.color('black')
ошибка:
turtle.shape('turtle')
AttributeError: module 'turtle' has no attribute 'shape'