ГУГЛСОСЁТ
import turtle
import time
def koch_line(size, n):
if n == 0:
t.fd(size)
return
a = size/3
koch_line(a, n-1)
t.left(60)
koch_line(a, n-1)
t.right(120)
koch_line(a, n-1)
t.left(60)
koch_line(a, n-1)
t = turtle.Turtle()
t.shape("turtle")
t.width(3)
t.speed(0)
t.color(' blue ')
koch_line(200, 3)
turtle.done()