Drawing doraemon
from turtle import *
import turtle
def my_goto(x,y):
penup()
goto(x,y)
pendown()
def face():
fillcolor("#43A6AD")
begin_fill()
tracer(False)
a = 8.0
for i in range(120):
if 0 <= i < 30 or 60 <= i < 90:
a -= 0.05
lt(3)
fd(a)
else:
a += 0.05
lt(3)
fd(a)
tracer(True)
end_fill()
def beard():
my_goto(-32,135)
seth(165)
fd(60)
my_goto(-32,125)
seth(180)
fd(60)
my_goto(-32,115)
seth(193)
fd(60)
my_goto(37,135)
seth(15)
fd(60)
my_goto(37,125)
seth(0)
fd(60)
my_goto(37,115)
seth(-13)
fd(60)
def mouth():
my_goto(5,148)
seth(270)
fd(100)
seth(0)
circle(120,50)
seth(230)
circle(-120,100)
face()
beard()
mouth()
my_goto(70,205)
turtle.circle(30,extent = 360)
my_goto(-30,205)
turtle.circle(30,extent = 360)
i=input();