第16329题 单选
给定Python turtle代码,判断其绘制的图形是?
import turtle
for i in range(1,7):
    turtle.fd(50)
    turtle.left(60)
A

正方形

B

六边形

C

三角形

D

五角星