题目:绘制下面的图形

python turtle 100-25
Python 海龟绘图 100 题——第 25 题

解析:

使用循环绘制五角星。

答案:

Python
import turtle as t
for i in range(0,5):
    t.fd(100)
    t.rt(144)