Draw Mickey Mouse In Python With Code

Looking for a tutorial on how to draw mickey mouse in python turtle, then you are at the right place today. In this tutorial, I will show you how to draw mickey mouse using python turtle, so follow this tutorial till the end.
Mickey mouse is one of the most popular cartoon show. It was very entertaining and funny so today I decided to draw this cartoon mickey mouse.
We will use the turtle module to draw triangle in python. It 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 python program to draw mickey mouse in turtle. Now 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.
To run this python program, follow the below steps:
- Create a new folder for this python project.
- Open it in a code editor of your choice.
- Create a python file with an ending .py extension.
- Copy the above code and paste it in your file.
Now you have the code, but there is one last thing you need to do as I have said I have used the turtle library for this program so you might need to install it if you get any errors like turtle module not found.
Turtle comes pre-installed with python setup, but if you get any errors you can install it using the below command.
pip install turtle
So now you have everything setup and you are ready to run the program, so to run this program open a command prompt at your program folder location and paste the below command.
python filename.py
The above command will 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.

As you can see, we successfully drew mickey mouse using python turtle. I hope you were able to run this program successfully.
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 mickey mouse in 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:
- Draw Pikachu using python with code.
- Draw doraemon using python turtle.
- Draw shinchan using python turtle.
- Draw I love you using python turtle.
- Draw Batman logo using python turtle.
- Draw Google Logo using python turtle.
- Create a fruit ninja game in python.
- Make a python calculator using turtle.
- Draw christmas tree using python.
- Draw spiderman in python programming.
- Draw Python Logo Using Python.
- Draw Iron Man using python turtle with code.
- Draw A Heart Using python turtle with code.
- Draw car in python turtle with code.
- Draw a Cat In Python Turtle With Code.
- Draw Panda In Python Turtle With Code.
- Draw Smiley Face In Python With Code.
- Draw Snowman In Python Turtle With Code.
- Draw Rainbow In Python Turtle With Code.
- Draw Radha Krishna In Python Turtle With Code.
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 🙂