“Turtle” is a Python feature like a drawing board, which lets us command a turtle to draw all over it!
Code:
# Python program to draw# Rainbow Benzene using Turtle Programming#importing the turtle libraryimport turtle
colors =['red','purple','blue','green','orange','yellow']
t = turtle.Pen()
turtle.bgcolor('black')for x inrange(360):
t.pencolor(colors[x%6])
t.width(x//100+1)
t.forward(x)
t.left(59)