Skip to main content

Posts

Showing posts with the label turtlepython

Drawing Doraemon`s face using Python programming language...

                                                    Doraemon`s Face...    Hey everyone! Today I tried to make a Doraemon using python`s Turtle  module. As I`m not a professional programmer, I  made it in a normal way.  I have posted the same source code below. Try to edit and execute it in your favorite IDE(Integrated Development Environment) or mobile application used for python programming.       Python Code:         import turtle a = turtle.Screen() a.bgcolor('lightblue') d = turtle.Turtle() d.color('black') d.pensize(3) d.speed(10) d.penup() d.fd(145) d.pendown() d.fd(10) d.left(50) d.circle(150,258) d.left(51) d.fd(10) d.color('black','white') d.begin_fill() d.fd(212) d.lt(50) d.circle(125,100) d.rt(55) d.circle(35,180) d.right(190) d.circle(35,180) d.rt(62) d.circle(116,111) d.lt(46) d.en...