import turtle
turtle.color("blue","blue")
turtle.speed(0.6)
turtle.begin_fill()
# 变量:用一个盒子把数据装起来,
# 命名:1.变量名是由数字,英文字母,下划线任意组成,
# 2.变量名不能有标点符号(下划线除外),数字不能作为开头
# abc13 a1_____b 123as _123 w.1 你好
# 法无禁止即自由,不建议用中文 hello
# 取名: 见名知义
turtle.write("金善智",font=(None,100))
long = 234
angel = 144 # 拼音 jiaodu angel
turtle.fd(long)
turtle.left(angel)
turtle.fd(long)
turtle.left(angel)
turtle.fd(long)
turtle.left(angel)
turtle.fd(long)
turtle.left(angel)
turtle.fd(long)
turtle.left(angel)
turtle.end_fill()
turtle.done()
来源:CSDN
作者:少儿编程侯老师
链接:https://blog.csdn.net/houlaos/article/details/103638295