摘要: 绘制五角星 1 #五角星.py 2 import turtle as t 3 t.fillcolor("red") 4 t.begin_fill() 5 for i in range(5): 6 t.fd(200) 7 t.right(144) 8 t.end_fill() 9 t.done() 示 阅读全文
posted @ 2020-03-11 16:40 玩的三立方 阅读(1651) 评论(0) 推荐(0) 编辑