how to make venom face usig pytho turtle graphis | easy coding| helpucode

VENOM USING PYTHON TURTLE WITH EASY TO UNDERSTAND CODE

hey ,everyone helpucode is back with another turtle project


below is the source code available๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡

1.first import everything from turtle and name your turtle anything you want..i have named it as "V"
from turtle import *
v=Turtle()
s=Screen()
s.bgcolor("black")
v.speed(0)
v.color("white")
v.pensize(2)
2. Draw eyes

v.left(165)
v.begin_fill()
v.circle(-200,100)
v.right(30)
v.circle(-200,-100)
v.left(30)
v.circle(-200,-45)
v.color("white")
v.end_fill()
v.penup()
v.setposition(50,0)
v.pendown()
v.color("white")
v.pensize(2)
v.left(170)
v.begin_fill()
v.circle(200,100)
v.left(30)
v.circle(200,-100)
v.right(30)
v.circle(200,-45)
v.color("white")
v.end_fill()


3. Draw its teeth

v.speed(5)
v.penup()
v.setposition(-200,-70)
v.pendown()
v.right(90)
v.begin_fill()
for i in range(5):
 v.circle(40,110)
 v.right(60)
 v.circle(40,-90)
 v.left(30)
v.left(-30)
v.circle(40,-60)
for k in range(4):
    v.right(45)
    v.circle(40, 90)
    v.left(60)
    v.circle(40, -110)
v.circle(40,-20)
v.left(45)
v.circle(130,-40)
for p in range(4):
 v.left(40)
 v.circle(40,90)
 v.right(40)
 v.circle(40,-110)
v.speed(5)
v.left(40)
v.circle(55,-110)
v.right(65)
for s in range(7):
 v.circle(40,90)
 v.left(40)
 v.circle(40,-110)
 v.right(20)
v.speed(5)
v.left(20)
v.circle(40,-50)
v.left(115)
v.circle(100,-75)
v.color("white")
v.end_fill()


4. Draw tongue(doesn't look nice but it still is a part)
v.penup()
v.setposition(-20,-200)
v.pendown()
v.begin_fill()
v.color("red")
v.left(30)
v.circle(200,90)
v.right(30)
v.circle(200,-80)
v.right(30)
v.circle(-200,37)
v.end_fill()
v.hideturtle()

WITH TONGUE

WITHOUT TONGUE




Comments

Popular Posts