+ 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)
2 Respuestas
+ 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.
+ 3
it is a code for drawing stuff with Python's turtle module. it will give error, as the indentation is messed up.