from turtle import *
from math import *
# speed(0)#控制速度
#hideturtle()#隐藏箭头
# #画等边三角形
# def ET(length):
# for i in range(3):
# fd(length)
# left(120)
# #第一个三角形
# home()
# ET(200)
# #第二个三角形
# home()
# penup()
# left(180)
# fd(200)
# right(180)
# pendown()
# ET(200)
# #第三个三角形
# home()
# penup()
# right(120)
# fd(200)
# left(120)
# pendown()
# ET(200)
# exitonclick()#该语句让程序等待用户点击界面后才能够退出
def T(length1):
pencolor('white')
length2=(2*length1**2-cos(radians(108))*length1**2)**0.5#cos()返回的是弧度的,radians能转化为弧度
fillcolor('black')
begin_fill()
fd(length1)
right(72)
fd(length1)
right