摘要: import turtle as t t.pensize(3) t.pencolor("purple") t.fillcolor("red") t.begin_fill() t.seth(60) for i in range(3): t.fd(200) t.right(120) t.penup() 阅读全文
posted @ 2020-03-11 17:11 Judy-dd 阅读(108) 评论(0) 推荐(0) 编辑
摘要: import turtle as t t.setup(500,500) t.seth(30) t.pensize(3) t.color("black") for i in range(3): t.fd(150) t.right(120) t.penup() t.fd(50) t.pendown() 阅读全文
posted @ 2020-03-11 16:09 Judy-dd 阅读(156) 评论(0) 推荐(0) 编辑
摘要: import turtle turtle.setup(500,500) turtle.fillcolor("red") turtle.begin_fill() for i in range(5): turtle.fd(100) turtle.right(144) turtle.end_fill() 阅读全文
posted @ 2020-03-11 16:01 Judy-dd 阅读(978) 评论(0) 推荐(0) 编辑