Corona viurus, python, turtle

Hey, everyone today we're going to learn about how to draw Corona virus shape using turtle library in python. Turtle is a preinstalled most powerful library in pyhton. It helps us to rendered most amazing graphics and other cool animations stuff. So, let get started:


Source code:

#Import turtle library 
import turtle

#  create a screen

screen = turtle.Screen()

# create a drawer for drawing

drawer = turtle.Turtle()

#set the background color of screen 
screen.bgcolor("black")

# for set a background, color, speed, pensize and color of drawer.

drawer.pencolor("dark green")

drawer.pensize(3)

drawer1 = 0

drawer2 = 0

drawer.speed(0)

drawer.goto(0, 200)

drawer.pendown()

# create whille loop for drawing corona virus shape.

while True:

drawer.forward(drawer1)

drawer.right(drawer2)

drawer1 += 3

drawer2 += 1

if drawer2 == 210:

break

# for hide a drawer

drawer.ht()

# for holding the mainscreen

screen.mainloop()


Output:
.


Hope you guys like it:). In any case of comments, suggestions or difficulties please drop it down on comments box. I'll try my best to solve your problem. Keep sharing keep growing.