Python|用python画一个简单的等边三角形

Python|用python画一个简单的等边三角形

文章图片



用python画一个简单的等边三角形源码分享如下:
from turtle import*
speed(10)
bgcolor(\"blue\")
penup()
goto(-280-250)
fillcolor(\"yellow\")
begin_fill()
pendown()
for i in range(3):
【Python|用python画一个简单的等边三角形】forward(600)
left(120)
end_fill()
hideturtle()
exitonclick()