Simple flower shape using turtle

           Welcome to make flower shape


This is a simple flower shape using turtle in python



from turtle import *
import colorsys

speed(0)
bgcolor('black')
h=0
for i in range(16):
for j in range(18):
c= colorsys.hsv_to_rgb(h,1,1)
color(c)
h += 0.005
rt(90)
circle(150 - j *6,90)
lt(90)
circle(150 - j *6 , 90)
rt(180)
circle(40,24)
done()

Comments

Popular posts from this blog

Binary to Number converter.

Python Tkinter QR Code Generator

color guessing game with GUI using python