叠加三角形的绘制,使用turtle库中的turtle.fd()函数和turtle.seth()函数绘制一个叠加等边三角形

#程序练习题2.5
import turtle
turtle.setup(650,350,200,200)
turtle.penup()
turtle.seth(-150)
turtle.fd(150)
turtle.pendown()
turtle.pensize(10)
turtle.seth(0)
turtle.fd(250)
turtle.seth(120)
turtle.fd(250)
turtle.seth(-120)
turtle.fd(250/2)
turtle.seth(0)
turtle.fd(250/2)
turtle.seth(-120)
turtle.fd(250/2)
turtle.seth(120)
turtle.fd(250/2)
turtle.seth(-120)
turtle.fd(250/2)
 

你可能感兴趣的:(python)