2020年3月14日
摘要: 1 from turtle import* 2 for i in range(3): 3 fd(50) 4 right(120) 5 right(120) 6 fd(-50) 7 for i in range(3): 8 fd(100) 9 left(120) 阅读全文
posted @ 2020-03-14 19:46 B·W 阅读(195) 评论(0) 推荐(0)
摘要: 1 from turtle import* 2 pu() 3 goto(-100,0) 4 pd() 5 seth(30) 6 for i in range(3): 7 fd(200) 8 right(120) 9 pu() 10 goto(100,0) 11 pd() 12 seth(150) 1 阅读全文
posted @ 2020-03-14 19:45 B·W 阅读(647) 评论(0) 推荐(0)
摘要: 1 from turtle import* 2 fd(-150) 3 color("black","red") 4 begin_fill() 5 for i in range(5): 6 fd(300) 7 right(144) 8 end_fill() 9 hideturtle() 阅读全文
posted @ 2020-03-14 19:37 B·W 阅读(175) 评论(0) 推荐(0)