摘要: import turtle for i in range(3): turtle.forward(100) turtle.right(120) turtle.left(60) turtle.forward(100) for i in range(3): turtle.right(120) turtle 阅读全文
posted @ 2020-09-15 21:55 yx-co 阅读(77) 评论(0) 推荐(0)
摘要: import turtle as t t.pensize(2) t.pencolor("black") t.right(30) t.forward(200) t.right(120) t.forward(300) t.right(120) t.forward(300) t.right(120) t. 阅读全文
posted @ 2020-09-15 21:52 yx-co 阅读(166) 评论(0) 推荐(0)
摘要: import turtle turtle.pensize(1 ) turtle.pencolor("black") turtle.fillcolor("red") turtle.begin_fill() for i in range(5): turtle.forward(200) turtle.ri 阅读全文
posted @ 2020-09-15 21:48 yx-co 阅读(103) 评论(0) 推荐(0)