Vs Code logo using Python turtle
Vs Code logo using Python turtle
Let's Start
Video Tutorial
You can visit our YouTube channel 'Mr. Code Box' and watch the video tutorial.
Source Code
import turtle as vs
vs.bgcolor("black")
vs.speed(3)
vs.penup()
vs.width(10)
vs.pencolor("blue")
vs.fillcolor("blue")
vs.begin_fill()
vs.right(180)
vs.forward(200)
vs.right(180)
vs.pendown()
vs.left(30)
vs.forward(300)
vs.right(60)
vs.forward(60)
vs.right(60)
vs.forward(200)
vs.right(60)
vs.forward(60)
vs.right(60)
vs.forward(300)
vs.right(90)
vs.forward(30)
vs.right(90)
vs.forward(280)
vs.left(120)
vs.forward(185)
vs.left(120)
vs.forward(278)
vs.right(90)
vs.forward(32)
vs.end_fill()
vs.penup()
vs.done()
Post a Comment