摘要: 1、五角星的绘制 import turtle as t t.setup(650,350,-180,-180) t.fillcolor("red") t.begin_fill() for i in range(5): t.fd(150) t.right(145) t.end_fill() 2、六角形的 阅读全文
posted @ 2020-03-11 17:57 Mindf 阅读(255) 评论(0) 推荐(0)