python turtle painted turtle love

Beginner python, the first attempt to use turtle painting love ~

This effect is drawn

This is what I painted -

This is my code

// An highlighted block
import turtle
turtle.pensize(5)
turtle.pencolor("red")
turtle.left(90)
turtle.circle(50,180)
turtle.fd(30)
turtle.left(30)
turtle.fd(50)
turtle.goto(0,-120)
turtle.up()
turtle.goto(0,0)
turtle.down()
turtle.seth(90)
turtle.circle(-50,180)
turtle.fd(30)
turtle.right(30)
turtle.fd(50)
turtle.goto(0,-120)
Released five original articles · won praise 0 · Views 37

Guess you like

Origin blog.csdn.net/weixin_45725376/article/details/104091762