Python的turtle编写一个五边形 import turtle as t d = 0 t.pencolor("green") for i in range(5): t.fd(200) d += 72 t.seth(d)