python turtle库画风车怎么画,求解决

img

import math
import turtle as t
t.fillcolor('yellow')
for i in range(4):
    t.begin_fill()
    t.fd(100)
    t.left(90)
    t.fd(100)
    t.goto(0,0)
    t.right(135)
    t.fd(100/math.sqrt(2))
    t.left(90)
    t.fd(100/math.sqrt(2))
    t.left(135)
    t.fd(100)
    t.right(90)
    t.end_fill()

觉得有用的话采纳一下哈