Mickey Mouse is an iconic character that many of us are familiar with. If you’re a Python programmer, and a fan of Mickey Mouse, you might be wondering how to Draw Mickey Mouse in Python Turtle. It’s not as difficult as you might think!
This blog post will walk you through the process of creating a turtle-based character from scratch. While the execution of this tutorial is based on drawing Mickey Mouse, the techniques involved can be applied to any other character. Let’s get started!
Output for Mickey Mouse in Python Turtle:
Before anything, let’s see what we are going to draw. Output may not look good but it’s identical to Micky Mouse. We tried our best and now we encourage you to try more to come closer to the real one.
Code to Draw Mickey Mouse in Python Turtle
We will understand the code using comments.
#draw mickey mouse using turtle
#importing necessary modules
from tkinter import N
import turtle
import colorsys
#Initialize a variable for turtle
micky_mouse = turtle.Turtle()
micky_mouse.speed(0)
#Create a turtle screen
screen= turtle.Screen()
#Define height and width of screen
screen.setup(1200,600)
#Define Background color of screen
screen.bgcolor('#ffdbac')
screen.update()
# Define title of program
turtle.title("Copy Assignment Turtle")
#Code for drawing head of mickey mouse
#initializing starting point of head
micky_mouse.goto(0,-150)
#filling color in head
micky_mouse.begin_fill()
#setting color of head
micky_mouse.color('black')
#drawing head
micky_mouse.circle(150)
#ending fill
micky_mouse.end_fill()
#Code for drawing ears of mickey mouse
#left ear
#initializing starting point of left ear
micky_mouse.goto(-120,100)
#filling color in left ear
micky_mouse.begin_fill()
#setting color of left ear
micky_mouse.color('black')
#drawing left ear
micky_mouse.circle(90)
#ending fill
micky_mouse.end_fill()
#right ear
#initializing starting point of right ear
micky_mouse.goto(120,100)
#filling color in right ear
micky_mouse.begin_fill()
#setting color of right ear
micky_mouse.color('black')
#drawing right ear
micky_mouse.circle(90)
#ending fill
micky_mouse.end_fill()
#Code for drawing face of mickey mouse
#initializing starting point of face dip
micky_mouse.goto(40,-190)
#filling color in face dip
micky_mouse.begin_fill()
#setting color of face dip
micky_mouse.color('#ffdbac')
#drawing face dip
micky_mouse.circle(120)
#ending fill
micky_mouse.end_fill()
micky_mouse.goto(-40,-190)
micky_mouse.begin_fill()
micky_mouse.color('#ffdbac')
micky_mouse.circle(120)
micky_mouse.end_fill()
#Code for face outline
#initializing starting point of face outline
micky_mouse.goto(0,-150)
#setting color of face outline
micky_mouse.color('black')
#drawing face outline
micky_mouse.circle(150)
#Code for drawing eyes of mickey mouse
#initializing starting point of left eye
micky_mouse.penup()
micky_mouse.goto(-50,-25)
micky_mouse.pendown()
def draw_left_eye(rad):
for i in range(4):
# two arcs
#filling color in eyes
micky_mouse.begin_fill()
#setting color of eyes
micky_mouse.color('white')
#DRAW eyes
micky_mouse.circle(rad,90)
micky_mouse.circle(rad//4,90)
#ending fill
micky_mouse.end_fill()
# Main section
# tilt the shape to negative 45
micky_mouse.seth(45)
draw_left_eye(40)
#Code of left eye ball
micky_mouse.penup()
micky_mouse.goto(-50,-20)
micky_mouse.pendown()
#filling color in left eye
micky_mouse.begin_fill()
#setting color of left eye
micky_mouse.color('black')
#drawing left eye
micky_mouse.circle(8)
#ending fill
micky_mouse.end_fill()
#initializing starting point of right eye
micky_mouse.penup()
micky_mouse.goto(55,-25)
micky_mouse.pendown()
def draw_eye(rad):
for i in range(4):
# two arcs
#filling color in eyes
micky_mouse.begin_fill()
#setting color of eyes
micky_mouse.color('white')
#DRAW eyes
micky_mouse.circle(rad,90)
micky_mouse.circle(rad//4,90)
#ending fill
micky_mouse.end_fill()
# Main section
# tilt the shape to negative 45
micky_mouse.seth(45)
draw_eye(40)
# code for right eye ball
micky_mouse.penup()
micky_mouse.goto(50,-20)
micky_mouse.pendown()
#filling color in right eye
micky_mouse.begin_fill()
#setting color of right eye
micky_mouse.color('black')
#drawing right eye
micky_mouse.circle(8)
#ending fill
micky_mouse.end_fill()
#Code for drawing outline of eyes of mickey mouse
#initializing starting point of right eye outline
micky_mouse.penup()
micky_mouse.goto(55,-25)
micky_mouse.pendown()
def draw_reye_outline(rad):
for i in range(4):
# two arcs
micky_mouse.circle(rad,90)
micky_mouse.circle(rad//4,90)
# Main section
# tilt the shape to negative 45
micky_mouse.seth(45)
draw_reye_outline(40)
#initializing starting point of left eye outline
micky_mouse.penup()
micky_mouse.goto(-50,-25)
micky_mouse.pendown()
def draw_leye_outline(rad):
for i in range(4):
# two arcs
micky_mouse.circle(rad,90)
micky_mouse.circle(rad//4,90)
# Main section
# tilt the shape to negative 45
micky_mouse.seth(45)
draw_leye_outline(40)
#Code for drawing nose of mickey mouse
#initializing starting point of nose
micky_mouse.penup()
micky_mouse.goto(-20,-50)
micky_mouse.pendown()
def draw(rad):
for i in range(3):
# two arcs
#filling color in nose
micky_mouse.begin_fill()
#setting color of nose
micky_mouse.color('black')
#DRAW NOSE
micky_mouse.circle(rad,90)
micky_mouse.circle(rad//3,90)
#ending fill
micky_mouse.end_fill()
# Main section
# tilt the shape to negative 45
micky_mouse.seth(-45)
draw(25)
#speed of turtle
micky_mouse.speed(3)
#Code for drawing lips of mickey mouse
#initializing starting point of lips
micky_mouse.speed(0)
micky_mouse.penup()
micky_mouse.goto(-48,-78)
micky_mouse.pendown()
#direction of turtle
micky_mouse.right(90)
#setting heading of turtle
micky_mouse.setheading(-50)
#drawing lips
for x in range (110):
micky_mouse.forward(1)
micky_mouse.left(1)
# micky_mouse.left(110)
# micky_mouse.forward(110)
# micky_mouse.end_fill()
micky_mouse.speed(0)
#Code for drawing eyebrows of mickey mouse
micky_mouse.setheading(-155)
#setting color of left eyebrow
micky_mouse.color('black')
#intialze pen thickness
micky_mouse.pensize(2)
micky_mouse.penup()
#initializing starting point of left eyebrow
micky_mouse.goto(-40,-70)
micky_mouse.pendown()
#drawing left eyebrow
micky_mouse.circle(30,40)
#hide turtle
micky_mouse.hideturtle()
#code for drawing right eyebrow
micky_mouse.setheading(-245)
#setting color of right eyebrow
micky_mouse.color('black')
#intialze pen thickness
micky_mouse.pensize(2)
micky_mouse.penup()
#initializing starting point of right eyebrow
micky_mouse.goto(50,-80)
micky_mouse.pendown()
#drawing right eyebrow
micky_mouse.circle(30,40)
#hide turtle
micky_mouse.hideturtle()
#Code for drawing tongue of mickey mouse
micky_mouse.pensize(1)
micky_mouse.penup()
micky_mouse.goto(-33,-92)
micky_mouse.pendown()
#direction of turtle
micky_mouse.right(90)
#setting heading of turtle
micky_mouse.setheading(-45)
#drawing lips
micky_mouse.forward(20)
micky_mouse.circle(25,95)
micky_mouse.forward(20)
#Code for background pattern
#Code for first pattern
h=0
n=50
micky_mouse.pensize(3)
for i in range (50):
c = colorsys.hsv_to_rgb(h, 1.0, 0.8)
h+=1/n
micky_mouse.penup()
#initializing starting point of background pattern
micky_mouse.goto(500,200)
micky_mouse.pendown()
micky_mouse.hideturtle()
#setting color of background pattern
micky_mouse.pencolor(c)
#drawing background pattern
micky_mouse.circle(i,90)
#moving turtle in forward direction
micky_mouse.forward(i)
#moving turtle in right direction
micky_mouse.right(270)
micky_mouse.circle(i,270)
micky_mouse.forward(i)
micky_mouse.right(180)
micky_mouse.speed(0)
#Code for second pattern
for i in range (50):
c = colorsys.hsv_to_rgb(h, 1.0, 0.8)
h+=1/n
micky_mouse.penup()
micky_mouse.goto(-500,200)
micky_mouse.pendown()
micky_mouse.hideturtle()
micky_mouse.pencolor(c)
micky_mouse.circle(i,90)
micky_mouse.forward(i)
micky_mouse.right(270)
micky_mouse.circle(i,270)
micky_mouse.forward(i)
micky_mouse.right(180)
micky_mouse.speed(0)
#Code for third pattern
for i in range (50):
c = colorsys.hsv_to_rgb(h, 1.0, 0.8)
h+=1/n
micky_mouse.penup()
micky_mouse.goto(500,-200)
micky_mouse.pendown()
micky_mouse.hideturtle()
micky_mouse.pencolor(c)
micky_mouse.circle(i,90)
micky_mouse.forward(i)
micky_mouse.right(270)
micky_mouse.circle(i,270)
micky_mouse.forward(i)
micky_mouse.right(180)
micky_mouse.speed(0)
#Code for fourth pattern
for i in range (50):
c = colorsys.hsv_to_rgb(h, 1.0, 0.8)
h+=1/n
micky_mouse.penup()
micky_mouse.goto(-500,-200)
micky_mouse.pendown()
micky_mouse.hideturtle()
micky_mouse.pencolor(c)
micky_mouse.circle(i,90)
micky_mouse.forward(i)
micky_mouse.right(270)
micky_mouse.circle(i,270)
micky_mouse.forward(i)
micky_mouse.right(180)
micky_mouse.speed(0)
turtle.done()
#code for holding the output screen
turtle.mainloop()Conclusion
In this tutorial, we learned how to draw one of the most famous characters i.e. Mickey Mouse in Python Turtle. Mickey Mouse is made up of a lot of little details, and you need to get them all perfect if you want the final product to look authentic.
You can learn to draw different characters if you have a basic understanding of how to use Python Turtle and practice drawing shapes and other things. Read on for more information and keep visiting the website for useful tips and tricks on how to get started with Python Turtle.
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



