Pythondex
Turtle Python Programs

Draw Mickey Mouse In Python Using Turtle

Last updated July 3, 2023 by Jarvis Silva

In this tutorial I will show you how to draw mickey mouse using python turtle, Mickey mouse is one of the most popular cartoon show, It was very entertaining and funny so today I decided to draw him.

So to draw mickey mouse we will use the turtle module, turtle is a GUI python library which can be used to draw anything like cartoons and more.

Python Code To Draw Mickey Mouse


import turtle

tur = turtle.Turtle()
tur.speed(0)

tur.goto(0,-150)
tur.begin_fill()
tur.color('black')
tur.circle(150)
tur.end_fill()

tur.goto(-120,100)
tur.begin_fill()
tur.color('black')
tur.circle(90)
tur.end_fill()
tur.goto(120,100)
tur.begin_fill()
tur.color('black')
tur.circle(90)
tur.end_fill()

tur.goto(40,-190)
tur.begin_fill()
tur.color('#fff')
tur.circle(120)
tur.end_fill()

tur.goto(-40,-190)
tur.begin_fill()
tur.color('#fff')
tur.circle(120)
tur.end_fill()

tur.goto(0,-150)
tur.color('black')
tur.circle(150)

tur.penup()
tur.goto(-50,-25)
tur.pendown()

def draw_left_eye(rad):
    for i in range(4):
        tur.begin_fill()
        tur.color('black')
        tur.circle(rad,90)
        tur.circle(rad//4,90)
        tur.end_fill()

tur.seth(45)
draw_left_eye(40)

tur.penup()
tur.goto(-50,-20)
tur.pendown()
tur.begin_fill()
tur.color('black')
tur.circle(8)
tur.end_fill()

tur.penup()
tur.goto(55,-25)
tur.pendown()

def draw_eye(rad):
    for i in range(4):
        tur.begin_fill()
        tur.color('black')
        tur.circle(rad,90)
        tur.circle(rad//4,90)
        tur.end_fill()

tur.seth(45)
draw_eye(40)

tur.penup()
tur.goto(50,-20)
tur.pendown()
tur.begin_fill()
tur.color('black')
tur.circle(8)
tur.end_fill()

tur.penup()
tur.goto(55,-25)
tur.pendown()

def draw_reye_outline(rad):
    for i in range(4):
        tur.circle(rad,90)
        tur.circle(rad//4,90)
        
tur.seth(45)
draw_reye_outline(40)

tur.penup()
tur.goto(-50,-25)
tur.pendown()

def draw_leye_outline(rad):
    for i in range(4):
        tur.circle(rad,90)
        tur.circle(rad//4,90)
        
tur.seth(45)
draw_leye_outline(40)

tur.penup()
tur.goto(-20,-50)
tur.pendown()
def draw(rad):
    for i in range(3):
        tur.begin_fill()
        tur.color('black')
        tur.circle(rad,90)
        tur.circle(rad//3,90)
        tur.end_fill()

tur.seth(-45)
draw(25)

tur.speed(3)

tur.speed(0)
tur.penup()
tur.goto(-48,-78)
tur.pendown()
tur.right(90)
tur.setheading(-50)
for x in range (110):
  tur.forward(1)
  tur.left(1)
tur.speed(0)

tur.setheading(-155)
tur.color('black')
tur.pensize(2)
tur.penup()
tur.goto(-40,-70)
tur.pendown()
tur.circle(30,40)
tur.hideturtle()

tur.setheading(-245)
tur.color('black')
tur.pensize(2)
tur.penup()
tur.goto(50,-80)
tur.pendown()
tur.circle(30,40)
tur.hideturtle()

tur.pensize(1)
tur.penup()
tur.goto(-33,-92)
tur.pendown()
tur.right(90)
tur.setheading(-45)
tur.forward(20)
tur.circle(25,95)
tur.forward(20)

turtle.done()    

Above is the code for drawing mickey mouse, to run this program you need to have python installed on your computer, If you don’t have then follow this guide: Install and setup python on your computer.

When you run the program and it will open a new window and it will start drawing mickey mouse and below is the finished drawing of mickey mouse.

Draw Mickey Mouse In Python Turtle

As you can see, we successfully drew mickey mouse, It is simple drawing of him if you have turtle knowledge then you can add more things to the 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 🙂