Tesla Logo Using Python Turtle
Tesla 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
#Create instance of Turtle library
t = turtle.Turtle()
#Change screen color
t.getscreen().bgcolor("red")
#pen color
t.pencolor("black")
#Adjust the writing speed
t.speed(10)
t.color("white")
t.penup()
#Reposition the pen
t.goto(-160,160)
t.pendown()
t.begin_fill()
t.left(18)
#To Draw Circle
t.circle(-500,40)
t.right(90)
t.forward(17)
t.right(89.5)
t.circle(500,39)
t.right(90)
t.forward(17)
t.end_fill()
t.penup()
t.goto(-155,133)
t.pendown()
t.begin_fill()
t.right(90.5)
t.circle(-500,38)
t.right(70)
t.circle(-30,80)
t.left(90)
t.circle(-20,-70)
t.right(10)
t.circle(-300,-15)
t.right(93)
t.forward(280)
t.right(160)
t.forward(280)
t.left(80)
t.circle(300,15)
t.circle(20,70)
t.left(80)
t.circle(30,-80)
t.end_fill()
t.penup()
t.goto(-20,155)
t.pendown()
t.pencolor("black")
t.color("red")
t.begin_fill()
t.left(30)
t.forward(60)
t.left(130)
t.forward(65)
t.end_fill()
#Wrting TESLA
#T
t.pencolor("white")
t.penup()
t.goto(-200,-180)
t.pendown()
t.right(66)
t.pensize(15)
t.forward(60)
t.back(30)
t.right(90)
t.forward(70)
#E
t.penup()
t.goto(-115,-180)
t.pendown()
t.left(90)
t.forward(60)
t.penup()
t.goto(-115,-215)
t.pendown()
t.forward(60)
t.penup()
t.goto(-115,-250)
t.pendown()
t.forward(60)
#S
t.penup()
t.goto(-20,-180)
t.pendown()
t.forward(60)
t.backward(60)
t.right(90)
t.forward(34)
t.left(90)
t.forward(60)
t.right(90)
t.forward(34)
t.right(90)
t.forward(60)
#L
t.penup()
t.goto(70,-180)
t.pendown()
t.left(90)
t.forward(70)
t.left(90)
t.forward(60)
#A
t.penup()
t.goto(155,-180)
t.pendown()
t.forward(60)
t.penup()
t.goto(155,-250)
t.pendown()
t.left(90)
t.forward(32.5)
t.right(90)
t.forward(60)
t.right(90)
t.forward(32.5)
turtle.done()
Post a Comment