下列程序绘制的是一个什么图形?( )
import turtle as t
t.penup()
t.goto(100,100)
t.pendown()
for i in range(5):
t.fd(100)
t.left(72)
五边形
正方形
圆
六边形
发表评论