摘要: 一、五角星绘制 import turtle as t t.up() t.fd(-100) t.pd() t.fillcolor("red") t.begin_fill() for i in range(5): t.fd(200) t.right(144) t.end_fill() 二、六角形的绘制 阅读全文
posted @ 2020-03-11 16:55 Ni__23 阅读(451) 评论(0) 推荐(0)