Our mission is clear: we want to help every student learn how to code, no matter their background or education level. We believe that coding is the new literacy—it's something everyone needs to have in order to succeed, and it can be learned by anyone.
Design Using Python Turtle
Get link
Facebook
X
Pinterest
Email
Other Apps
Source Code
from turtle import* import turtle speed(200) turtle.bgcolor("black") turtle.begin_fill() for i in range(15,45): colormode(i) color("white") if i // 2 !=0: circle(13,91) circle(i+45*2) turtle.done()
Source Code import colorsys as c from turtle import * # setup(800,800) speed ( 200 ) tracer ( 10 ) width ( 2 ) bgcolor ( "black" ) goto ( - 25 , 200 ) for i in range ( 25 ) : for k in range ( 15 ) : color ( c . hsv_to_rgb ( k / 15 , i / 25 , 1 )) right ( 90 ) circle ( 100 - i * 4 , 90 ) left ( 90 ) right ( 180 ) circle ( 200 - i * 4 , 90 ) right ( 180 ) circle ( 50 , 24 ) hideturtle () done ()
Comments
Post a Comment