Print Rainbow Benzene Using Python
In this article we will see how to draw a rainbow Benzene using Python turtle graphics. python have a turtle module. turtle is a popular way for introducing programming to kids.
Print Rainbow Benzene Using Python
To install the turtle module open your terminal and run the command below
WINDOWS
py -m pip install turtle
CODE :
# Importing the Required Module
# pip install turtle
import turtle
# Create window to Display raintbow Benzene
window = turtle.Screen()
# Setting Geomentry for the window
window.setup(600, 600, startx=0, starty=100)
# Colours
colors = ['red', 'purple', 'blue', 'green', 'orange','yellow']
# To draw the rainbow Benzene
t = turtle.Pen()
turtle.bgcolor('black')
for x in range(280):
t. pencolor(colors [x%6])
t.width(x//90 + 1)
t. forward(x)
t. left(59)
OUTPUT: