不会用spyder中的turtle,求大佬教教孩子如何使用turtle
import turtle as t #导库 t.pensize(2) # 笔的粗细设置 for i in range(8): t.fd(150) t.left(135)