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()

 

绘制印象派小狗

相关文章:

  • 2021-10-31
  • 2021-10-02
  • 2022-12-23
  • 2021-06-18
  • 2022-12-23
  • 2022-12-23
  • 2021-04-05
  • 2021-11-20
猜你喜欢
  • 2022-02-18
  • 2021-12-26
  • 2021-06-03
  • 2021-08-15
  • 2021-10-23
  • 2021-06-14
  • 2021-05-12
相关资源
相似解决方案