To print the circle design using turtle | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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 ()

4th Oct 2017, 1:06 PM
Chilukuri Sri Jyothsna Devi
Chilukuri Sri Jyothsna Devi - avatar
1 Answer
+ 1
Thanks I was asking for this only, And I found it here
6th Oct 2017, 5:18 PM
#RahulVerma
#RahulVerma - avatar