09 2020 档案

摘要:import turtle as t t.pencolor("green") t.pensize(10) t.fd(400) t.left(120) t.fd(400) t.left(120) t.fd(400) t.seth(0) t.penup() t.fd(200) t.pendown() t 阅读全文
posted @ 2020-09-14 22:40 假粉 阅读(145) 评论(0) 推荐(0)
摘要:import turtle as t t.pencolor("blue") t.pensize(15) t.seth(90) t.fd(300) t.seth(-30) t.fd(300) t.seth(-150) t.fd(300) t.seth(0) t.seth(0) t.penup() t. 阅读全文
posted @ 2020-09-14 22:18 假粉 阅读(90) 评论(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-14 21:39 假粉 阅读(55) 评论(0) 推荐(0)