
Introduction
Hello, and welcome friends to learn a new topic today. We are going to draw the Javascript Logo using a python turtle module. It’s super easy and exciting to learn as we have used simple lines of code. It is understandable to all the beginners interested in learning python. We provide all the explanations and comments for the lines of code as it helps in easy understanding of code.
We have many project topics on python turtle and articles written on that, so keep visiting our website www.copyassignment.com
For the complete code, move to the bottom of the page and you will get the entire code along with the output.
So let’s begin drawing Javascript Logo
Import Turtle
import turtle t=turtle.Turtle()
These lines of code import the module turtle. We have created the object t of the turtle module to access its methods and functions.
Draw the outer box of Javascript Logo using Python Turtle
t.goto(-20,-70) #set the color t.color("#F0DB4F","#F0DB4F") t.begin_fill() t.pendown() t.left(165) t.forward(100) t.right(70) t.forward(220) t.setheading(0) t.forward(229) t.penup() t.goto(-20,-70) t.setheading(0) t.pendown() t.left(15) t.forward(100) t.left(70) t.forward(229) t.end_fill() t.penup()
In this block of code, we have initialized the position of the turtle to goto(-20,-70). The color is initialized to #F0DB4F. Here we have initialized the position to goto(-20,-70) twice. Drawn the outer line of the logo from both sides with the specified coordinates and the distance.
Draw the ‘J’ of the javascript logo
#set the position to draw 'J' t.goto(-35,-20) t.setheading(90) t.color("white","white") t.pendown() t.begin_fill() t.forward(150) t.left(90) t.forward(20) t.left(90) t.forward(130) t.setheading(90) t.left(75) t.forward(40) t.left(110) t.forward(20) t.penup() t.goto(-35,-20) t.setheading(90) t.left(75) t.pendown() t.forward(60) t.end_fill() t.penup()
In this piece of code, we have to initialise the position of the turtle to goto(-35,-20). The heading position is 90. The color is initialized to white, the forward and left functions are used to draw the ‘J’ letter of the Javascript Logo.
Draw the yellow box for ‘S’ Letter
t.color(“yellow”,”yellow”)
#Set the position
t.goto(-20,-55)
t.setheading(90)
t.pendown()
t.begin_fill()
t.forward(215)
t.right(90)
t.forward(100)
t.right(95)
t.forward(195)
t.left(90)
t.end_fill()
t.penup()
In this block of code, we have to initialize the color to yellow and initialize the position to goto(-20,-55). The heading position is 90 i.e North . Here we have drawn the yellow box by using Python turtle module functions.
Draw the ‘S ‘ letter of the javascript Logo
#Draw the S of the Dell Logo t.color("white","white") t.pensize(2) t.goto(-10,-20) t.begin_fill() t.setheading(0) t.left(15) t.pendown() t.forward(65) t.left(70) t.forward(70) t.left(90) t.left(15) t.forward(50) t.right(100) t.forward(50) t.right(90) t.forward(50) t.left(85) t.forward(20) t.left(95) t.forward(70) t.left(90) t.forward(90) t.left(100) t.forward(50) t.right(105) t.forward(37) t.right(75) t.forward(50) t.left(85) t.forward(20) t.end_fill()
We have to draw the ‘ S’ letter of the Javascript logo. Initialized the position to goto(-10,-20). Here we have made use of forward , left and right functions to generate the S letter where forward() is used to move forward a specified distance .left to move left angle and right to move right angle while drawing the S letter of javascript logo i.e JS.
Complete Code to Draw Javascript Logo using Python Turtle
#import Turtle import turtle t=turtle.Turtle() t.penup() #set the position of turtle to draw the outline of Logo t.goto(-20,-70) #set the color t.color("#F0DB4F","#F0DB4F") t.begin_fill() t.pendown() t.left(165) t.forward(100) t.right(70) t.forward(220) t.setheading(0) t.forward(229) t.penup() t.goto(-20,-70) t.setheading(0) t.pendown() t.left(15) t.forward(100) t.left(70) t.forward(229) t.end_fill() t.penup() #set the position to draw 'J' t.goto(-35,-20) t.setheading(90) t.color("white","white") t.pendown() t.begin_fill() t.forward(150) t.left(90) t.forward(20) t.left(90) t.forward(130) t.setheading(90) t.left(75) t.forward(40) t.left(110) t.forward(20) t.penup() t.goto(-35,-20) t.setheading(90) t.left(75) t.pendown() t.forward(60) t.end_fill() t.penup() #Draw the yellow box for 's' letter t.color("yellow","yellow") #Set the position t.goto(-20,-55) t.setheading(90) t.pendown() t.begin_fill() t.forward(215) t.right(90) t.forward(100) t.right(95) t.forward(195) t.left(90) t.end_fill() t.penup() #Draw the S of the Dell Logo t.color("white","white") t.pensize(2) t.goto(-10,-20) t.begin_fill() t.setheading(0) t.left(15) t.pendown() t.forward(65) t.left(70) t.forward(70) t.left(90) t.left(15) t.forward(50) t.right(100) t.forward(50) t.right(90) t.forward(50) t.left(85) t.forward(20) t.left(95) t.forward(70) t.left(90) t.forward(90) t.left(100) t.forward(50) t.right(105) t.forward(37) t.right(75) t.forward(50) t.left(85) t.forward(20) t.end_fill() t.hideturtle() turtle.done()
Output

Here you will see, that we have successfully created the Javascript logo using the Python Turtle module
For more articles like this, keep visiting our website.
Thank you for reading this article.
Also Read:
- CRUD Operations in Java
- How to Ace Your Machine Learning Assignment – A Guide for Beginners
- Assignment Helper | Python Program to Find HCF or GCD
- Assignment Helper | Python Program to Find ASCII Value of Character
- Assignment Helper | Python Program to Convert Decimal to Binary, Octal, and Hexadecimal
- Assignment Helper | Python Program to Find Numbers Divisible by Another Number
- Assignment Helper | Python Program to Display Powers of 2 Using Anonymous Function
- Contact Management System Project in Python
- Assignment Helper | Python Program to Find the Sum of Natural Numbers
- Assignment Helper | Python Program to Find Armstrong Number in an Interval
- Assignment Helper | Python Program to Convert Kilometers to Miles
- Assignment Helper | Python Program to Check Armstrong Number
- Assignment Helper | Python Program to Print the Fibonacci sequence
- Assignment Helper | Python Program to Print all Prime Numbers in an Interval
- Top 10 Resources to Find Machine Learning Datasets in 2022
- Python MySQL Connector example, pip, install, and download
- Reinforcement learning in Python
- Python SQLite Tutorial
- Best Python Interview Questions and Answers
- Assignment Helper | Python Program to Check if a Number is Odd or Even
- Assignment Helper | Python Program to Convert Celsius To Fahrenheit
- Assignment Helper | Python Program to Convert Kilometers to Miles
- Assignment Helper | Python Program to Generate a Random Number
- Assignment Helper | Python Program to Swap Two Variables
- Assignment Helper | Python Program to Solve Quadratic Equation
- Assignment Helper | Python Program to Calculate the Area of a Triangle
- Assignment Helper | Add Two Numbers Python
- Assignment Helper | Leap Year Program in Python
- Assignment Helper | Python Program to Find the Largest Among Three Numbers
- Assignment Helper | Python Program to Display the multiplication Table
Keywords->python turtle design, turtle, design, 12th class python project, python for kids, 12th class, beautiful turtle designs, python