python好玩的程序-花和时钟

系统 1349 0

时钟的打印
本文免费直播课程分享链接:https://ke.qq.com/course/397896?flowToken=1009460
有需要学习提升的宝宝可以进去免费报名一下
每天分享一些好完的技术和主流的项目

            
              

打印时钟:
import turtle

def draw_spiral(t, n, length=3, a=0.1, b=0.0002):
   #Draws an Archimedian spiral starting at the origin

   theta = 0.0

   for i in range(n):
      t.fd(length)
      dtheta = 1 / (a + b * theta)

      t.lt(dtheta)
      theta += dtheta

#create the world and bob
bob = turtle.Turtle()
draw_spiral(bob, n=1000)

turtle.mainloop()


            
          

花的打印

            
              打印花:
import turtle


def polyline(t, n, length, angle):
   #Draws n line segments

   for i in range(n):
      t.fd(length)
      t.lt(angle)

def arc(t, r, angle):
   #Draws an arc with given radius and angle

   arc_length = 2 * math.pi * r * abs(angle) / 360
   n = int(arc_length / 4) + 3
   step_length = arc_length / n
   step_angle = float(angle) / n

   t.lt(step_angle/2)
   polyline(t, n, step_length, step_angle)
   t.rt(step_angle/2)

def petal(t, r, angle):
   #Draws a petal using two arcs.

   for i in range(2):
      arc(t, r, angle)
      t.lt(180 - angle)

def flower(t, n, r, angle):
   #Draws a flower with n petals

   for i in range(n):
      petal(t, r, angle)
      t.lt(360.0/n)

def move(t, length):
   #Move turtle(t) forwoard (length) units without leaving a trail

   t.pu()
   t.fd(length)
   t.pd()

bob = turtle.Turtle()

#draw a sequence of three flowers

move(bob, -100)
flower(bob, 7, 60.0, 60.0)

move(bob, 100)
flower(bob, 10, 40.0, 80.0)

move(bob, 100)
flower(bob, 20, 140.0, 20.0)

bob.hideturtle()
turtle.mainloop()

            
          

各位爱学习的同学有没有学到呢,

欢迎各位宝宝加入小编的交流qun
点击链接加入群聊【Python技术交流】:https://jq.qq.com/?_wv=1027&k=5SvRhJ9


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论