如何用python画六边形?

用Python编写六边形的步骤:

1、首先加载turtle模块,这个模块是Python自带的模块。

import turtle

2、准备一个turtle

t = turtle.Pen()

3、让t前进100个像素;

t.forward(100)

再让t向左旋转60°;

t.left(60)

4、让步骤3重复六次:

for i in range(6):
    t.fotward(100)
    t.left(60°)

就可以画一个完整的六边形。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » 如何用python画六边形?