09 2020 档案

摘要:import turtle turtle.setup(650, 350, 200, 200) turtle.penup() turtle.fd(-250) turtle.pendown() turtle.pensize(25) turtle.pencolor("purple") turtle.set 阅读全文
posted @ 2020-09-21 23:13 whispe 阅读(89) 评论(0) 推荐(0)
摘要:import turtle >>> turtle.right(60) >>> turtle.forward(200) >>> turtle.right(120) >>> turtle.forward(200) >>> turtle.right(120) >>> turtle.forward(200) 阅读全文
posted @ 2020-09-15 22:57 whispe 阅读(167) 评论(0) 推荐(0)
摘要:import turtle >>> turtle.setup(600,500) >>> turtle.fillcolor('green') >>> turtle.pensize(5) >>> turtle.begin_fill() >>> turtle.seth(30) >>> for i in r 阅读全文
posted @ 2020-09-15 21:18 whispe 阅读(141) 评论(0) 推荐(0)
摘要:> import turtle >>> turtle.setup(500,500) >>> turtle.fillcolor("red") >>> turtle.begin_fill() >>> for i in range(5): turtle.fd(200) turtle.right(144) 阅读全文
posted @ 2020-09-15 20:43 whispe 阅读(145) 评论(0) 推荐(0)