Want to know it's explanation | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Want to know it's explanation

import turtle import colorsys t=turtle.Turtle() s=turtle.screen().bgcolor('black') t.speed(0) n=70 h=0 for i in range(360): c=colorsys.hsv_to_rgb(h,1,0.8) h+1/n t.color(c) t.left(1) t.fd(1) for j in range(2): t.left(200) t.circle(100)

3rd Feb 2024, 11:07 AM
Yati Varshney
Yati Varshney - avatar
2 Answers
+ 7
Horizon Gaming , please do not ask your own question in someone else post. > start your own post and give a brief description what issue do you have.
3rd Feb 2024, 4:27 PM
Lothar
Lothar - avatar
+ 3
it is a code for drawing stuff with Python's turtle module. it will give error, as the indentation is messed up.
3rd Feb 2024, 11:43 AM
Lisa
Lisa - avatar