七巧板
import turtle as t
t.setup(1300,700,100,100)
t.right(45)
t.pensize(3)
#正方形
t.color("#a594c0")
t.begin_fill()
for i in range(4):
t.fd(100*(2**0.5))
t.right(90)
t.end_fill()
#蓝色三角形
t.left(180)
t.color("#67becf")
t.begin_fill()
t.fd(200*(2**0.5))
t.left(135)
t.fd(400)
t.left(135)
t.fd(200*(2**0.5))
t.end_fill()
#绿色三角形
t.color("#caff67")
t.begin_fill()
t.fd(200*(2**0.5))
t.left(135)
t.fd(400)
t.left(135)
t.fd(200*(2**0.5))
t.end_fill()
#黄色三角形
t.color("#f9f51a")
t.begin_fill()
t.fd(100*(2**0.5))
t.left(135)
t.fd(200)
t.left(135)
t.fd(100*(2**0.5))
t.end_fill()
#平行四边形
t.left(180)
t.penup()
t.fd(100*(2**0.5))
t.pendown()
t.color("#ef3d61")
t.begin_fill()
t.fd(100*(2**0.5))
t.right(135)
t.fd(200)
t.right(45)
t.fd(100*(2**0.5))
t.right(135)
t.fd(200)
t.end_fill()
#橙色三角形
t.penup()
t.goto(0,-200)
t.pendown()
t.left(180)
t.color("#f6ca29")
t.begin_fill()
for i in range(2):
t.lef