# Créé par prof, le 20/06/2016 avec EduPython from turtle import * color("red","yellow") begin_fill() for n in range(1,10): circle(6*n) end_fill() done()