闪电侠吧 关注:309,243贴子:1,949,936
  • 2回复贴,共1

turtle了一个闪电侠标志

取消只看楼主收藏回复

So, who is the fastest man alive?


来自Android客户端1楼2019-03-12 00:02回复
    Python真好玩⊙▽⊙楼下贴源码,过些日子照着参数加工一个出来


    来自Android客户端2楼2019-03-12 00:05
    回复
      import turtle
      def Plotflash():
      turtle.screensize(500,500,'Red')
      turtle.speed(3)
      turtle.goto(0,-200)
      turtle.clear()
      turtle.hideturtle()
      turtle.color('Yellow')
      turtle.begin_fill()
      turtle.circle(200)
      turtle.end_fill()
      turtle.penup()
      turtle.goto(0,-170)
      turtle.pendown()
      turtle.color('Red')
      turtle.begin_fill()
      turtle.circle(170)
      turtle.end_fill()
      turtle.penup()
      turtle.goto(120,270)
      turtle.pendown()
      turtle.color('Yellow')
      turtle.begin_fill()
      turtle.goto(-110,35)
      turtle.goto(-20,35)
      turtle.goto(-100,-90)
      turtle.goto(-15,-90)
      turtle.goto(-120,-270)
      turtle.goto(110,-35)
      turtle.goto(20,-35)
      turtle.goto(100,90)
      turtle.goto(15,90)
      turtle.goto(120,270)
      turtle.end_fill()
      turtle.done()
      Plotflash()


      3楼2019-03-12 10:02
      收起回复