Page Nav

HIDE

Grid

GRID_STYLE

Classic Header

{fbt_classic_header}

Header Ads

program

latest

Amazing Star design using python

A mazing Star design using python 🧑‍💻🌟 ...................................... source code  👇 import turtle col=( 'red' , 'ye...


Amazing Star design using python 🧑‍💻🌟

......................................
source code  👇


import turtle

col=('red','yellow','green','cyan','blue','white')

t=turtle.Turtle()
screen=turtle.Screen()
screen.bgcolor('black')
t.speed(30)

for i in range (100):

t.color(col[i%6])
t.forward(i*4)
t.left(150)
t.width(2)

 

                        


             



                   




                                             








2 comments