Explore

Turtle Programs

Draw Letters In Python Turtle With Code

Draw Letters In Python Turtle With Code

Want to know how to draw Letters in python turtle, then you are at the right place. Today in this tutorial I will show you how to draw Letters using python turtle with code, so follow this tutorial till the end.

We will use the turtle module to draw alphabets in python. Turtle is a GUI library, with the help of this library you can draw anything in python. 

Don’t worry if you don’t know about this library. I will show you everything on how to create this program and provide you with the code.

Draw Letter A In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("black")
 
t.right(65)
t.forward(100)
 
t.setpos(-30,50)
t.right(50)
t.forward(100)
 
t.penup()
t.setpos(-50,-10)
t.right(65)
t.pendown()
t.backward(50)

Draw Letter B In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
#draw straight line
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("black")
t.right(90)
t.forward(200)
 
t.penup()
t.goto(-30,50) #centering in the screen
#draw first curve
t.pendown()
t.right(-90)
t.circle(-50,180)
 
 
t.penup()
t.goto(-30,-50) #centering in the screen
#draw second curve
t.pendown()
t.right(180)
t.circle(-50,180)

Draw Letter C In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
#draw straight line
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("black")
t.right(180)
t.circle(50,180)

Draw Letter D In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
#draw straight line
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
t.right(90)
t.forward(200)
 
t.penup()
t.goto(-30,50) #centering in the screen
#draw curves
t.pendown()
t.right(-90)
t.circle(-100,180)

Draw Letter E In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
t.setpos(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
t.forward(100)
t.backward(100)
t.right(90)
t.forward(100)
t.left(90)
t.forward(100)
t.backward(100)
t.right(90)
t.forward(100)
t.left(90)
t.forward(100)

Draw Letter F In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
t.setpos(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
t.forward(100)
t.backward(100)
t.right(90)
t.forward(100)
t.left(90)
t.forward(100)
t.backward(100)
t.right(90)
t.forward(100)

Draw Letter G In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
#draw straight line
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
t.right(180)
t.circle(50,180)
t.left(90)
t.forward(50)
t.goto(-50,0)
t.right(90)
t.forward(50)
t.right(90)
t.forward(20)

Draw Letter H In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
#draw straight line
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
 
t.right(90)
t.forward(200)
t.goto(-30,-50)
t.goto(50,-50)
t.goto(50,50)
t.goto(50,-140)

Draw Letter I In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
#draw straight line
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
 
t.right(90)
t.forward(100)

Draw Letter J In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
#draw straight line
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
 
t.forward(10)
t.right(90)
t.forward(150)
t.circle(-50,180)

Draw Letter K In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
#draw straight line
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
 
t.right(90)
t.forward(150)
 
t.goto(-30,-20)
t.left(45)
t.forward(100)
 
t.goto(-30,-20)
t.left(90)
t.forward(100)

Draw Letter L In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
#draw straight line
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
 
t.right(90)
t.forward(150)
 
t.right(-90)
t.forward(70)

Draw Letter M In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
#draw straight line
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
 
t.right(90)
t.forward(150)
 
t.goto(-30,50)
t.goto(20,-20)
t.goto(65,50)
t.goto(65,-100)

Draw Letter N In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
#draw straight line
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
 
t.right(90)
t.forward(150)
 
t.goto(-30,50)
t.goto(50,-90)
t.goto(50,50)

Draw Letter O In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
t.circle(100,None,100)

Draw Letter P In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
t.right(90)
t.forward(150)
t.goto(-30,50)
t.circle(50,None,100)

Draw Letter Q In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
t.circle(50,None,100)
 
t.right(45)
t.forward(30)

Draw Letter R In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
t.right(90)
t.forward(150)
t.goto(-30,50)
t.right(-90)
t.circle(-50,180,100)
t.penup()
t.goto(0,-40)
t.left(135)
t.pendown()
t.forward(70)

Draw Letter S In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
t.right(90)
t.forward(150)
t.goto(-30,50)
t.right(-90)
t.circle(-50,180,100)
t.penup()
t.goto(0,-40)
t.left(135)
t.pendown()
t.forward(70)

Draw Letter T In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
t.forward(100)
t.goto(20,50)
t.right(90)
t.forward(100)

Draw Letter U In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
t.right(90)
t.forward(100)
t.circle(50,180,100)
t.forward(100)

Draw Letter V In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
t.right(65)
t.forward(100)
t.left(130)
t.forward(100)

Draw Letter W In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
t.right(65)
t.forward(100)
t.left(130)
t.forward(100)
 
t.right(120)
t.forward(100)
t.left(130)
t.forward(100)

Draw Letter X In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
t.right(50)
t.forward(155)
t.penup()
 
t.goto(50,50)
t.right(70)
t.pendown()
t.forward(150)

Draw Letter Y In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
t.right(65)
t.forward(100)
t.left(130)
t.forward(100)
 
t.penup()
t.goto(13,-43)
t.left(25)
t.pendown()
t.backward(100)

Draw Letter Z In Python Turtle


import turtle
t=turtle.Turtle()
t.penup()
t.goto(-30,50) #centering in the screen
t.pendown()
t.pensize(10)
t.pencolor("red")
 
t.forward(100)
t.right(130)
t.forward(130)
 
t.left(130)
t.forward(100)

Above were all the python turtle programs to draw letters, Want more amazing turtle tutorials like this check out this: Awesome Python Turtle Codes.

Don’t want to create all the files and folders then you can run this program now using this online python compiler it is fast and easy.

Summary

This was the tutorial on drawing all the letters using python turtle. I hope you found this tutorial helpful and useful. Do share this tutorial with your friends who might be interested in this program.

Here are some more python drawing tutorials for you:

I hope you found what you were looking for from this tutorial, and if you want more python guides and tutorials like this, do join our Telegram channel for future updates.

Thanks for reading, have a nice day 🙂