Код: Выделить всё
import math, turtle
screen = turtle.Screen()
screen.setup(width=1000, height=600 ,startx=0, starty=0)
screen.bgcolor('black')
screen.tracer(0)
pen = turtle.Turtle()
pen.penup()
pen.speed(10)
width = 800
height = 600
MAX_ITER=80
def draw_mandelbrot(c):
z = 0
n = 0
while abs(z)
Подробнее здесь: [url]https://stackoverflow.com/questions/78030547/how-to-make-faster-mandelbrot-set-plot[/url]
Мобильная версия