绘制印象派小狗

from turtle import *
fillcolor("pink")
begin_fill()
left(45)
fd(50)
left(120)
fd(100)
left(120)
fd(100)
left(120)
fd(50)
end_fill()
fillcolor("red")
begin_fill()
right(45)
fd(200)
right(90)
fd(80)
right(90)
fd(200)
right(90)
fd(80)
right(90)
end_fill()
penup()
goto(200,-40)
pendown()
fd(60)
left(90)
fd(20)
right(90)
fd(60)
right(90)
penup()
goto(30,-80)
pendown()
fd(50)

penup()
goto(50,-80)
pendown()
fd(50)

penup()
goto(130,-80)
pendown()
fd(50)

penup()
goto(150,-80)
pendown()
fd(50)


hideturtle()
done()

 

绘制印象派小狗