Console Python
from turtle import * for c in ['red', 'green', 'yellow', 'blue']: color(c) print(c) forward(75) left(90)
Exécuter
Effacer
Console