摘要: import turtle count = 1 while count <= 3: turtle.forward(100) turtle.right(120) count +=1 turtle.left(60) turtle.forward(100) count = 1 while count <= 阅读全文
posted @ 2020-09-15 20:00 锂加熔融的锌盐 阅读(95) 评论(0) 推荐(0)
摘要: import turtle turtle.left(90) count = 1 while count <= 3: turtle.forward(300) turtle.left(120) count += 1 turtle.penup() turtle.forward(100) turtle.pe 阅读全文
posted @ 2020-09-15 19:54 锂加熔融的锌盐 阅读(78) 评论(0) 推荐(0)
摘要: import turtle turtle.fillcolor("red") turtle.begin_fill() count = 1 while count <= 5: turtle.forward(100) turtle.right(144) count +=1 turtle.end_fill( 阅读全文
posted @ 2020-09-15 18:57 锂加熔融的锌盐 阅读(115) 评论(0) 推荐(0)