摘要: #红色五角星 import turtle as t t.fillcolor("red") t.begin_fill() while True: t.fd(200) t.right(144) if abs(t.pos())<1: break t.end_fill() t.done() #六角形 imp 阅读全文
posted @ 2020-03-11 17:05 心辰 阅读(178) 评论(0) 推荐(0)