Хтось побачить тут творчий хаос, а хтось — сім рандомів. Хтось — простий шкільний приклад, а хтось — танцюючу тінь Джексона Поллока.
from random import randint
from turtle import *
speed(0)
for _ in range(randint(500,600)):
penup()
setpos(randint(-200,200), randint(-200,200))
pendown()
pensize(randint(5,45))
color('#%06x' % randint(0, 0xFFFFFF))
left(randint(2,20))
forward(randint(2,150))