09 2020 档案

摘要:import turtle turtle.pensize(6) turtle.pencolor("yellow") turtle.fillcolor("red") turtle.begin_fill() for i in range(5): turtle.forward(99) turtle.rig 阅读全文
posted @ 2020-09-28 19:53 九木德 阅读(89) 评论(0) 推荐(0)
摘要:import turtle def drawSnake(rad, angle, len, neckrad): for _ in range(len): turtle.circle(rad, angle) turtle.circle(-rad, angle) turtle.circle(rad, an 阅读全文
posted @ 2020-09-21 20:00 九木德 阅读(232) 评论(0) 推荐(0)
摘要:import turtle turtle.fd(100) turtle.left(120) turtle.fd(100) turtle.left(120) turtle.fd(50) turtle.left(120) turtle.fd(50) turtle.right(120) turtle.fd 阅读全文
posted @ 2020-09-15 12:23 九木德 阅读(80) 评论(0) 推荐(0)
摘要:import turtle turtle.left(30) turtle.fd(100) turtle.right(120) turtle.fd(150) turtle.right(120) turtle.fd(150) turtle.right(120) turtle.fd(50) turtle. 阅读全文
posted @ 2020-09-15 12:19 九木德 阅读(85) 评论(0) 推荐(0)
摘要:from turtle import * fillcolor("red") begin_fill() import turtle turtle.write("邱淑慧", move=False, align="left", font=("Arial", 20, "normal")) while Tru 阅读全文
posted @ 2020-09-14 21:03 九木德 阅读(103) 评论(0) 推荐(0)