欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python : turtle 画正六边形 hexagon comb

程序员文章站 2022-07-13 23:38:44
...
draw_comb2.py
# -*- coding: cp936 -*-
# 画2圈蜂巢形 hexagon comb
import turtle

window = turtle.Screen()
t=turtle.Pen()

L = 50  # 画线长度
for h in range(6):
    for i in range(6):
        for j in range(6):
            t.forward(L)
            t.right(60)
        t.forward(L)
        t.left(60)
    t.forward(L)
    t.right(60)
#
window.exitonclick()

相关标签: python turtle