
Hello friends, in this article, we will learn to draw a simple drawing of Radha Krishna using Python Turtle. Please share if you like.
import turtle#keeping the background color dark blueturtle.bgcolor('#ffc233')#Defining title of programturtle.title("Radhe Krishna")#Creating turtle screenscreen= turtle.Screen()#Defining height and width of screenscreen.setup(650,580)t1 = turtle.Turtle()#keeping the fasted speed for now, you can keep the speed as needed#'fastest' : 0#'fast' : 10#'normal' : 6#'slow' : 3#'slowest' : 1t1.speed(4)#Let's move down and go the position from where we will start to drawt1.right(90)t1.pu()t1.forward(180)t1.left(90)#Now, the turtle is pointing positive x-axis#Let's keep the pen down and start to draw the baset1.pd()#Here we have dipped our turtle brush in a shade of blue colort1.fillcolor("#ff99d1")t1.begin_fill()t1.forward(400)t1.right(90)t1.forward(100)t1.right(90)t1.forward(800)t1.right(90)t1.forward(100)t1.right(90)t1.forward(400)t1.end_fill()#Now, we have drawn the base which is rectangular in shape#end_fill will fill blue color (selected above), in the shape formed by turtle#Now, we will start to draw moon,I have selected a very light shade of blue to color moont1.fillcolor("#CDEEF1")t1.begin_fill()t1.forward(160)t1.left(40)#this method will draw the moon's bordert1.circle(250,280)t1.left(40)t1.forward(160)t1.end_fill()#Now, we have drawn the moon as well as filled color in it#Now, we will start drawing Radha Krishna#We will draw Radha on our right side and Krishna on left side#We will start with Radhat1.fillcolor("#012427")t1.begin_fill()#We will start with the duppatat1.forward(160)t1.left(130)t1.circle(-300,30)t1.forward(95)#This will draw the shouldert1.circle(50,40)t1.right(40)#This will draw the headt1.forward(43)t1.circle(80,25)t1.circle(50,30)t1.left(10)t1.circle(35,28)#Now, we have completed drawing Radha#Now, let's draw krishna's turbant1.right(160)t1.circle(10,100)t1.right(100)t1.circle(10,80)t1.forward(20)t1.left(80)t1.circle(100,15)t1.right(90)t1.forward(6)t1.left(65)t1.circle(60,55)#Following code will draw Krishna's morpankht1.right(160)t1.circle(20,100)t1.forward(10)t1.circle(-20,25)t1.left(170)t1.circle(-20,40)t1.forward(10)t1.circle(20,80)#morpankh done#We will continue to draw rest part of turbant1.right(135)t1.circle(60,15)t1.left(70)t1.forward(6)t1.right(110)t1.forward(9)t1.left(80)t1.circle(70,24)t1.right(60)t1.circle(65,30)t1.circle(-5,110)#Below lines of code will draw the right hand of Krishnat1.circle(5,120)t1.right(90)t1.circle(5,60)t1.forward(10)t1.circle(10,5)t1.right(80)t1.forward(15)t1.circle(-5,160)#Now, we will draw the first open finger of right handt1.forward(6)t1.circle(2,180)t1.forward(6)t1.circle(20,30)#Below lines will draw fingers holding bansurit1.right(140)t1.circle(3,150)t1.right(110)t1.circle(4,80)t1.forward(2)t1.right(100)#Here, we will draw second open finger of krishnat1.forward(6)t1.right(60)t1.forward(9)t1.circle(2,180)t1.forward(10)t1.left(30)t1.forward(15)#We will now start to draw bansurit1.right(85)t1.forward(40)t1.right(60)t1.circle(5,310)t1.right(80)t1.forward(3)t1.right(90)#dor on bansurit1.forward(42)t1.right(30)t1.forward(10)t1.left(90)t1.circle(20,60)t1.left(95)t1.forward(12)t1.right(29)t1.forward(42)#We will draw the rest part of bansurit1.right(90)t1.forward(34)t1.right(85)#left hand of Krishnat1.forward(2)t1.circle(60,25)#Now, we will draw Krishna's duppatat1.right(80)t1.circle(10,40)t1.forward(45)t1.left(10)t1.forward(130)#Below lines will draw the plates of duppatat1.left(90)t1.forward(20)t1.right(90)t1.forward(10)t1.left(90)t1.forward(10)t1.right(90)t1.forward(5)t1.left(90)t1.forward(25)#This will complete drawing duppatat1.left(100)t1.forward(120)t1.right(175)t1.circle(50,50)#Now, we will tilt turtle towards required direction and draw Krishna's dhotit1.right(80)t1.circle(110,15)t1.forward(75)#The turtle will now reach to the rectangular base we had drawn in the beginningt1.left(97)t1.forward(260)t1.end_fill()#At this point, we have completed drawing Radhe Krishnat1.pu()t1.right(90)t1.forward(100)t1.right(90)t1.forward(420)#Lets also write their holy name in our drawingt1.color("#00a606")t1.write("Radhe Krishna....", font=("Script",45, "bold"))t1.hideturtle()turtle.done()
Image Output:

Video output:
Hope you had fun going through this article and drawing a picture of Radha Krishna using a few simple methods provided by Python Turtle.
Thank you for visiting our website.
Also Read:
- Radha Krishna using Python Turtle
- Drawing letter A using Python Turtle
- Wishing Happy New Year 2023 in Python Turtle
- Snake and Ladder Game in Python
- Draw Goku in Python Turtle
- Draw Mickey Mouse in Python Turtle
- Happy Diwali in Python Turtle
- Draw Halloween in Python Turtle
- Write Happy Halloween in Python Turtle
- Draw Happy Diwali in Python Turtle
- Extract Audio from Video using Python
- Drawing Application in Python Tkinter
- Draw Flag of USA using Python Turtle
- Draw Iron Man Face with Python Turtle: Tony Stark Face
- Draw TikTok Logo with Python Turtle
- Draw Instagram Logo using Python Turtle
- I Love You Text in ASCII Art
- Python Turtle Shapes- Square, Rectangle, Circle
- Python Turtle Commands and All Methods
- Happy Birthday Python Program In Turtle
- I Love You Program In Python Turtle
- Draw Python Logo in Python Turtle
- Space Invaders game using Python
- Draw Google Drive Logo Using Python
- Draw Instagram Reel Logo Using Python
- Draw The Spotify Logo in Python Turtle
- Draw The CRED Logo Using Python Turtle
- Draw Javascript Logo using Python Turtle
- Draw Dell Logo using Python Turtle
- Draw Spider web using Python Turtle