Python - Write "GFG" using Turtle Graphics Last Updated : 03 Jun, 2020 Comments Improve Suggest changes Like Article Like Report IN this article we will learn how to write "GFG" using Turtle Graphics in Python. For that lets first know what is Turtle Graphics. Turtle graphicsbackward(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. Approach import the turtle modules. import turtle Get a screen to draw on ws=turtle.Screen() Define an instance for turtle. for printing G we have to make a semicircle and then complete it by rotating the turtle and moving it forward. Then for F move pen up using penup() , then goto() to desired coordinates, then pen it down for drawing using pendown() and draw F.for remaining G go to other coordinates and do same as done for 1st G. Below is the python implementation for the above approach: Python3 #python program for printing "GFG" #importing turtle modules import turtle #setting up workscreen ws=turtle.Screen() #defining turtle instance t=turtle.Turtle() #turtle pen will be of "GREEN" color t.color("Green") #setting width of pen t.width(3) #for printing letter "G" for x in range(180): t.backward(1) t.left(1) t.right(90) t.forward(50) t.right(90) t.forward(30) t.right(90) t.forward(50) #for printing letter "F" t.penup() t.goto(40,0) t.pendown() t.forward(110) t.goto(40,0) t.left(90) t.forward(50) t.penup() t.goto(40,-50) t.pendown() t.forward(40) #for printing letter "G" t.penup() t.goto(150,0) t.pendown() for x in range(180): t.backward(1) t.left(1) t.right(90) t.forward(50) t.right(90) t.forward(30) t.right(90) t.forward(50) Output: Comment More infoAdvertise with us Next Article Python - Write "GFG" using Turtle Graphics T taran910 Follow Improve Article Tags : Python Python Programs Python-turtle Practice Tags : python Similar Reads Draw Star Using Turtle Graphics-Python Python's Turtle module offers a fun and interactive way to create graphics by controlling a turtle (pen) to draw on the screen. In this article, we will learn how to use Turtle to draw a simple star. Some commonly used methods are:forward(length) moves the pen in the forward direction by x unit.back 2 min read Python - Draw Hexagon Using Turtle Graphics In this article, we will learn how to make a Hexagon using Turtle Graphics in Python. For that lets first know what is Turtle Graphics. Turtle graphics 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 2 min read Draw Colorful Spiral Web Using Turtle Graphics in Python âTurtleâ is a Python feature like a drawing board, which lets us command a turtle to draw all over it. This comes packed with the standard Python package and need not be installed externally.Methods used:forward(value): moves the turtle in the forward direction.turtle.Pen(): setup the turtle penspee 1 min read Python - Draw Octagonal shape Using Turtle Graphics In this article, we will learn how to Make an Octagon using Turtle Graphics in Python. For that lets first know what is Turtle Graphics. Turtle graphicsbackward(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 1 min read Draw Spiralling Circles Using Turtle Graphics in Python Turtle is an inbuilt module of python. It enables us to draw any drawing by a turtle, methods defined in the turtle module, and by using some logical loops. To draw something on the screen(cardboard) just move the turtle(pen). To move turtle(pen) there are some functions i.e forward(), backward(), e 1 min read Like