+ 3
To print the circle design using turtle
from turtle import * pensize (5) for i in range (4): for c in range ["red","blue","green"]: pencolor (c) circle (100) right (30) done ()
1 Antwort
+ 1
Thanks
I was asking for this only,
And I found it here
from turtle import * pensize (5) for i in range (4): for c in range ["red","blue","green"]: pencolor (c) circle (100) right (30) done ()