摘要: 一、五角星的绘制 import turtle as t t.penup() t.fd(-150) t.pendown() t.fillcolor("red") t.begin_fill() t.pensize(3) for i in range(5): t.fd(300) t.right(144) 阅读全文
posted @ 2020-03-11 19:03 软锰矿 阅读(119) 评论(0) 推荐(0)