[[https://docs.python.org/3/library/turtle.html|Dokumentace]] from turtle import * forward(100) for steps in range(100): for c in ('blue', 'red', 'green'): color(c) forward(steps) right(30)
from turtle import * forward(100) for steps in range(100): for c in ('blue', 'red', 'green'): color(c) forward(steps) right(30)