Python turtle绘制刘慧

有木有大神晓得怎么用Python turtle绘制刘慧啊,卑微新学者求求了

我给你写了 刘
就是每次定一个坐标,然后给出移动的方向和长度
如果有帮助请点一下我回答右上方的采纳,谢谢!以后有什么问题可以互相交流。

import turtle
def run(angle, lenth):
    turtle.seth(angle)
    turtle.fd(lenth)
def change(x, y):
    turtle.penup()
    turtle.goto(x, y)
    turtle.pendown()

change(-200, 150)
run(-60, 50)
change(-250, 80)
run(0, 130)
change(-220, 80)
run(-70, 150)
change(-130, 80)
run(-120, 160)

change(-90, 150)
run(-90,200)
change(-60, 150)
run(-90,230)
run(-200,50)




img