python六角形的绘制?
python的turtle画六边形程序很简单,如下4行代码所示:
from turtle import *; for i in range(6):( left(60),fd(50)); done();