Python - Draw "GFG" logo using Turtle Graphics Last Updated : 15 Jul, 2025 Comments Improve Suggest changes Like Article Like Report Prerequisites: Turtle Programming in Python Turtle is a Python feature like a drawing board, which let us command a turtle to draw all over it! We can use many turtle functions which can move the turtle around. Turtle comes into the turtle library. The turtle module can be used in both object-oriented and procedure-oriented ways. Some of the commonly used methods are: forward(length): moves the pen in the forward direction by x unit.backward(length): moves the pen in the backward direction by x unit.right(angle): rotate the pen in the clockwise direction by an angle x.left(angle): rotate the pen in the anticlockwise direction by an angle x.penup(): stop drawing of the turtle pen.pendown(): start drawing of the turtle pen. In this article, we will be drawing the logo of GeeksforGeeks which looks like this - Approach : Importing Turtle.Forming a window screen with size and color.Then start to draw the logo:Form 'C' in the backward directionline 90 degree upline 90 degree rightline 90 degree downForm 'C' in forwarding direction Below is the implementation. Python3 # importing turtle for graphics import turtle # Forming the window screen tut = turtle.Screen() # background color green tut.bgcolor("White") # object pen = turtle.Turtle() #speed of pen pen.speed(10) # object color pen.color("Green") # object width pen.width(10) tut = turtle.Screen() # Code for symbol # backward C for x in range(180): pen.forward(1) pen.right(1) # up pen.right(90) pen.forward(50) # right pen.right(90) pen.forward(130) # down pen.right(90) pen.forward(50) pen.left(90) # forward C for x in range(180): pen.backward(1) pen.right(1) turtle.done() Output : Comment More infoAdvertise with us Next Article Must Do Coding Questions - Topic-wise D deepanshu_rustagi Follow Improve Article Tags : Python Python-turtle Practice Tags : python Similar Reads Interview PreparationInterview Preparation For Software DevelopersMust Coding Questions - Company-wise Must Do Coding Questions - Topic-wiseCompany-wise Practice ProblemsCompany PreparationCompetitive ProgrammingSoftware Design-PatternsCompany-wise Interview ExperienceExperienced - Interview ExperiencesInternship - Interview ExperiencesPractice @GeeksforgeeksProblem of the DayTopic-wise PracticeDifficulty Level - SchoolDifficulty Level - BasicDifficulty Level - EasyDifficulty Level - MediumDifficulty Level - HardLeaderboard !!Explore More...Data StructuresArraysLinked ListStackQueueBinary TreeBinary Search TreeHeapHashingGraphAdvance Data StructuresMatrixStringAll Data StructuresAlgorithmsAnalysis of AlgorithmsSearching AlgorithmsSorting AlgorithmsPattern SearchingGeometric AlgorithmsMathematical AlgorithmsRandomized AlgorithmsGreedy AlgorithmsDynamic ProgrammingDivide & ConquerBacktrackingBranch & BoundAll AlgorithmsProgramming LanguagesCC++JavaPythonC#Go LangSQLPHPScalaPerlKotlinWeb TechnologiesHTMLCSSJavaScriptBootstrapTailwind CSSAngularJSReactJSjQueryNodeJSPHPWeb DesignWeb BrowserFile FormatsComputer Science SubjectsOperating SystemsDBMSComputer NetworkComputer Organization & ArchitectureTOCCompiler DesignDigital Elec. & Logic DesignSoftware EngineeringEngineering MathematicsData Science & MLComplete Data Science CourseData Science TutorialMachine Learning TutorialDeep Learning TutorialNLP TutorialMachine Learning ProjectsData Analysis TutorialTutorial LibraryPython TutorialDjango TutorialPandas TutorialKivy TutorialTkinter TutorialOpenCV TutorialSelenium TutorialGATE CSGATE CS NotesGate CornerPrevious Year GATE PapersLast Minute Notes (LMNs)Important Topic For GATE CSGATE CoursePrevious Year Paper: CS exams Like