淘先锋技术网

首页 1 2 3 4 5 6 7

python六角形的绘制?

python的turtle画六边形程序很简单,如下4行代码所示:

from turtle import *; for i in range(6):( left(60),fd(50)); done();