描述:
使用turtle库,绘制一个八边形。
输出示例:
八边形效果如下:
解答代码:
import turtle as t
t.pensize(2)
for i in range(8):
t.fd(100)
t.left(45)