您现在的位置是:首页 > 技术教程 正文

Python海龟turtle基础知识大全与画图集合

admin 阅读: 2024-03-26
后台-插件-广告管理-内容页头部广告(手机)

Turtle图形库
Turtle 库是 Python 内置的图形化模块,属于标准库之一,位于 Python 安装目录的 lib 文件夹下,常用函数有以下几种:

一.Turtle绘图的基础知识

画布是turtle用于绘图区域,我们可以设置它的大小和初始位置。

1.设置画布大小

turtle.screensize(canvwidth=None, canvheight=None, bg=None),参数分别对应画布的宽(单位像素), 高, 背景颜色。

  1. turtle.screensize(1000,800, "blue")
  2. turtle.screensize() #返回默认大小(500, 400)
  3. turtle.setup(width=0.5, height=0.75, startx=None, starty=None)

width, height: 输入宽和高为整数时, 表示像素; 为小数时, 表示占据电脑屏幕的比例,(startx, starty): 这一坐标表示矩形窗口左上角顶点的位置, 如果为空,则窗口位于屏幕中心。

2.画笔的状态

在画布上,默认有一个坐标原点为画布中心的坐标轴,坐标原点上有一只面朝x轴正方向小乌龟。这里我们描述小乌龟时使用了两个词语:坐标原点(位置),面朝x轴正方向(方向), turtle绘图中,就是使用位置方向描述小乌龟(画笔)的状态。

  1. turtle.pensize() # 设置画笔的宽度;
  2. turtle.pencolor()# 没有参数传入,返回当前画笔颜色,传入参数设置画笔颜色,可以是字符串如"green", "red",也可以是RGB 3元组。
  3. turtle.speed(speed)#设置画笔移动速度,画笔绘制的速度范围[0,10]整数,数字越大越快。

3.使用turtle绘图主要分为3种命令代码,分别为运动命令、画笔控制命令和全局控制命令。

画笔运动命令代码

turtle.forward(distance)—向当前画笔方向移动distance像素长度
turtle.backward(distance)—向当前画笔相反方向移动distance像素长度
turtle.right(degree)—顺时针移动degree° turtle.left(degree)—逆时针移动degree°
turtle.pendown()—移动时绘制图形,缺省时也为绘制 turtle.goto(x,y)—将画笔移动到坐标为x,y的位置
turtle.penup()—提起笔移动,不绘制图形,用于另起一个地方绘制
turtle.circle()—画圆,半径为正(负),表示圆心在画笔的左边(右边)画圆 setx( )—将当前x轴移动到指定位置
sety( )—将当前y轴移动到指定位置 setheading(angle)—设置当前朝向为angle角度
home()—设置当前画笔位置为原点,朝向东 dot®—绘制一个指定直径和颜色的圆点
 

画笔控制命令代码

turtle.fillcolor(colorstring)—绘制图形的填充颜色 turtle.color(color1,color2)—同时设置pencolor=color1, fillcolor=color2
turtle.filling()—返回当前是否在填充状态 turtle.begin_fill()—准备开始填充图形
turtle.end_fill()—填充完成 turtle.hideturtle()—隐藏画笔的turtle形状
turtle.showturtle()—显示画笔的turtle形状
 

全局控制命令代码

turtle.clear()—清空turtle窗口,但是turtle的位置和状态不会改变
turtle.reset()—清空窗口,重置turtle状态为起始状态 turtle.undo()—撤销上一个turtle动作
turtle.isvisible()—返回当前turtle是否可见 stamp()—复制当前图形
turtle.write(s[,font=(“fontname”,font_size,“font_type”)])—文本,s为文本内容,font是字体的参数,分别为字体名称,大小和类型;font为可选项,font参数也是可选项
 

二.具体实例

0.樱花树

  1. from turtle import *
  2. from random import *
  3. from math import *
  4. def tree(n, l):
  5. pd () # 下笔
  6. # 阴影效果
  7. t = cos ( radians ( heading () + 45 ) ) / 8 + 0.25
  8. pencolor ( t, t, t )
  9. pensize ( n / 3 )
  10. forward ( l ) # 画树枝
  11. if n > 0:
  12. b = random () * 15 + 10 # 右分支偏转角度
  13. c = random () * 15 + 10 # 左分支偏转角度
  14. d = l * (random () * 0.25 + 0.7) # 下一个分支的长度
  15. # 右转一定角度,画右分支
  16. right ( b )
  17. tree ( n - 1, d )
  18. # 左转一定角度,画左分支
  19. left ( b + c )
  20. tree ( n - 1, d )
  21. # 转回来
  22. right ( c )
  23. else:
  24. # 画叶子
  25. right ( 90 )
  26. n = cos ( radians ( heading () - 45 ) ) / 4 + 0.5
  27. ran = random ()
  28. # 这里相比于原来随机添加了填充的圆圈,让樱花叶子看起来更多一点
  29. if (ran > 0.7):
  30. begin_fill ()
  31. circle ( 3 )
  32. fillcolor ( 'pink' )
  33. # 把原来随机生成的叶子换成了统一的粉色
  34. pencolor ( "pink" )
  35. circle ( 3 )
  36. if (ran > 0.7):
  37. end_fill ()
  38. left ( 90 )
  39. # 添加0.3倍的飘落叶子
  40. if (random () > 0.7):
  41. pu ()
  42. # 飘落
  43. t = heading ()
  44. an = -40 + random () * 40
  45. setheading ( an )
  46. dis = int ( 800 * random () * 0.5 + 400 * random () * 0.3 + 200 * random () * 0.2 )
  47. forward ( dis )
  48. setheading ( t )
  49. # 画叶子
  50. pd ()
  51. right ( 90 )
  52. n = cos ( radians ( heading () - 45 ) ) / 4 + 0.5
  53. pencolor ( n * 0.5 + 0.5, 0.4 + n * 0.4, 0.4 + n * 0.4 )
  54. circle ( 2 )
  55. left ( 90 )
  56. pu ()
  57. # 返回
  58. t = heading ()
  59. setheading ( an )
  60. backward ( dis )
  61. setheading ( t )
  62. pu ()
  63. backward ( l ) # 退回
  64. bgcolor ( 0.956, 0.9255, 0.9882 ) # 设置背景色(把灰色换成淡紫色)
  65. ht () # 隐藏turtle
  66. speed ( 0 ) # 速度 1-10渐进,0 最快
  67. tracer ( 0, 0 )
  68. pu () # 抬笔
  69. backward ( 50 )
  70. left ( 90 ) # 左转90度
  71. pu () # 抬笔
  72. backward ( 300 ) # 后退300
  73. tree ( 12, 100 ) # 递归7层
  74. done ()

 

 参考:http://t.csdn.cn/WHTgS

 

1.彩色螺旋线

  1. from turtle import *
  2. import turtle
  3. t = Turtle()
  4. t.pensize(2)
  5. turtle.bgcolor("black")
  6. colors = ["red", "yellow", 'purple', 'blue']
  7. t._tracer(False)
  8. for x in range(400):
  9. for y in range(200):
  10. t.forward(x * y)
  11. t.color(colors[x % 4])
  12. t.left(91)
  13. t._tracer(True)
  14. done()

 

2.小蟒蛇 

  1. import turtle
  2. turtle.penup()
  3. turtle.pencolor("blue")
  4. turtle.forward(-200)
  5. turtle.pendown()
  6. turtle.pensize(10)
  7. turtle.right(45)
  8. for i in range(4):
  9. turtle.circle(40, 100)
  10. turtle.circle(-40, 60)
  11. turtle.circle(40, 80 / 2)
  12. turtle.fd(30)
  13. turtle.circle(16, 150)
  14. turtle.fd(100)
  15. turtle.done()

 3.画佩奇

  1. import time
  2. import turtle as t
  3. t.pensize(4) # 设置画笔的大小
  4. t.colormode(255) # 设置GBK颜色范围为0-255
  5. t.color((255,155,192),"pink") # 设置画笔颜色和填充颜色(pink)
  6. t.setup(840,500) # 设置主窗口的大小为840*500
  7. t.speed(10) # 设置画笔速度为10
  8. #鼻子
  9. t.pu() # 提笔
  10. t.goto(-100,100) # 画笔前往F坐标(-100,100)
  11. t.pd() # 下笔
  12. t.seth(-30) # 笔的角度为-30°
  13. t.begin_fill() # 外形填充的开始标志
  14. a=0.4
  15. for i in range(120):
  16. if 0 <= i < 30 or 60 <= i < 90:
  17. a=a+0.08
  18. t.lt(3) #向左转3度
  19. t.fd(a) #向前走a的步长
  20. else:
  21. a=a-0.08
  22. t.lt(3)
  23. t.fd(a)
  24. t.end_fill() # 依据轮廓填充
  25. t.pu() # 提笔
  26. t.seth(90) # 笔的角度为90度
  27. t.fd(25) # 向前移动25
  28. t.seth(0) # 转换画笔的角度为0
  29. t.fd(10)
  30. t.pd()
  31. t.pencolor(255,155,192) # 设置画笔颜色
  32. t.seth(10)
  33. t.begin_fill()
  34. t.circle(5) # 画一个半径为5的圆
  35. t.color(160,82,45) # 设置画笔和填充颜色
  36. t.end_fill()
  37. t.pu()
  38. t.seth(0)
  39. t.fd(20)
  40. t.pd()
  41. t.pencolor(255,155,192)
  42. t.seth(10)
  43. t.begin_fill()
  44. t.circle(5)
  45. t.color(160,82,45)
  46. t.end_fill()
  47. #头
  48. t.color((255,155,192),"pink")
  49. t.pu()
  50. t.seth(90)
  51. t.fd(41)
  52. t.seth(0)
  53. t.fd(0)
  54. t.pd()
  55. t.begin_fill()
  56. t.seth(180)
  57. t.circle(300,-30) # 顺时针画一个半径为300,圆心角为30°的园
  58. t.circle(100,-60)
  59. t.circle(80,-100)
  60. t.circle(150,-20)
  61. t.circle(60,-95)
  62. t.seth(161)
  63. t.circle(-300,15)
  64. t.pu()
  65. t.goto(-100,100)
  66. t.pd()
  67. t.seth(-30)
  68. a=0.4
  69. for i in range(60):
  70. if 0<=i<30 or 60<=i<90:
  71. a=a+0.08
  72. t.lt(3) #向左转3度
  73. t.fd(a) #向前走a的步长
  74. else:
  75. a=a-0.08
  76. t.lt(3)
  77. t.fd(a)
  78. t.end_fill()
  79. #耳朵
  80. t.color((255,155,192),"pink")
  81. t.pu()
  82. t.seth(90)
  83. t.fd(-7)
  84. t.seth(0)
  85. t.fd(70)
  86. t.pd()
  87. t.begin_fill()
  88. t.seth(100)
  89. t.circle(-50,50)
  90. t.circle(-10,120)
  91. t.circle(-50,54)
  92. t.end_fill()
  93. t.pu()
  94. t.seth(90)
  95. t.fd(-12)
  96. t.seth(0)
  97. t.fd(30)
  98. t.pd()
  99. t.begin_fill()
  100. t.seth(100)
  101. t.circle(-50,50)
  102. t.circle(-10,120)
  103. t.circle(-50,56)
  104. t.end_fill()
  105. #眼睛
  106. t.color((255,155,192),"white")
  107. t.pu()
  108. t.seth(90)
  109. t.fd(-20)
  110. t.seth(0)
  111. t.fd(-95)
  112. t.pd()
  113. t.begin_fill()
  114. t.circle(15)
  115. t.end_fill()
  116. t.color("black")
  117. t.pu()
  118. t.seth(90)
  119. t.fd(12)
  120. t.seth(0)
  121. t.fd(-3)
  122. t.pd()
  123. t.begin_fill()
  124. t.circle(3)
  125. t.end_fill()
  126. t.color((255,155,192),"white")
  127. t.pu()
  128. t.seth(90)
  129. t.fd(-25)
  130. t.seth(0)
  131. t.fd(40)
  132. t.pd()
  133. t.begin_fill()
  134. t.circle(15)
  135. t.end_fill()
  136. t.color("black")
  137. t.pu()
  138. t.seth(90)
  139. t.fd(12)
  140. t.seth(0)
  141. t.fd(-3)
  142. t.pd()
  143. t.begin_fill()
  144. t.circle(3)
  145. t.end_fill()
  146. #腮
  147. t.color((255,155,192))
  148. t.pu()
  149. t.seth(90)
  150. t.fd(-95)
  151. t.seth(0)
  152. t.fd(65)
  153. t.pd()
  154. t.begin_fill()
  155. t.circle(30)
  156. t.end_fill()
  157. #嘴
  158. t.color(239,69,19)
  159. t.pu()
  160. t.seth(90)
  161. t.fd(15)
  162. t.seth(0)
  163. t.fd(-100)
  164. t.pd()
  165. t.seth(-80)
  166. t.circle(30,40)
  167. t.circle(40,80)
  168. #身体
  169. t.color("red",(255,99,71))
  170. t.pu()
  171. t.seth(90)
  172. t.fd(-20)
  173. t.seth(0)
  174. t.fd(-78)
  175. t.pd()
  176. t.begin_fill()
  177. t.seth(-130)
  178. t.circle(100,10)
  179. t.circle(300,30)
  180. t.seth(0)
  181. t.fd(230)
  182. t.seth(90)
  183. t.circle(300,30)
  184. t.circle(100,3)
  185. t.color((255,155,192),(255,100,100))
  186. t.seth(-135)
  187. t.circle(-80,63)
  188. t.circle(-150,24)
  189. t.end_fill()
  190. #手
  191. t.color((255,155,192))
  192. t.pu()
  193. t.seth(90)
  194. t.fd(-40)
  195. t.seth(0)
  196. t.fd(-27)
  197. t.pd()
  198. t.seth(-160)
  199. t.circle(300,15)
  200. t.pu()
  201. t.seth(90)
  202. t.fd(15)
  203. t.seth(0)
  204. t.fd(0)
  205. t.pd()
  206. t.seth(-10)
  207. t.circle(-20,90)
  208. t.pu()
  209. t.seth(90)
  210. t.fd(30)
  211. t.seth(0)
  212. t.fd(237)
  213. t.pd()
  214. t.seth(-20)
  215. t.circle(-300,15)
  216. t.pu()
  217. t.seth(90)
  218. t.fd(20)
  219. t.seth(0)
  220. t.fd(0)
  221. t.pd()
  222. t.seth(-170)
  223. t.circle(20,90)
  224. #脚
  225. t.pensize(10)
  226. t.color((240,128,128))
  227. t.pu()
  228. t.seth(90)
  229. t.fd(-75)
  230. t.seth(0)
  231. t.fd(-180)
  232. t.pd()
  233. t.seth(-90)
  234. t.fd(40)
  235. t.seth(-180)
  236. t.color("black")
  237. t.pensize(15)
  238. t.fd(20)
  239. t.pensize(10)
  240. t.color((240,128,128))
  241. t.pu()
  242. t.seth(90)
  243. t.fd(40)
  244. t.seth(0)
  245. t.fd(90)
  246. t.pd()
  247. t.seth(-90)
  248. t.fd(40)
  249. t.seth(-180)
  250. t.color("black")
  251. t.pensize(15)
  252. t.fd(20)
  253. # 尾巴
  254. t.pensize(4)
  255. t.color((255,155,192))
  256. t.pu()
  257. t.seth(90)
  258. t.fd(70)
  259. t.seth(0)
  260. t.fd(95)
  261. t.pd()
  262. t.seth(0)
  263. t.circle(70,20)
  264. t.circle(10,330)
  265. t.circle(70,30)

 

 参考:http://t.csdn.cn/fimSO

 

4.风和日丽图

  1. # coding=utf-8
  2. # code by me
  3. # 引用海龟库以及随机库
  4. import turtle as t
  5. import random
  6. import time
  7. light = t.Turtle(visible=False)
  8. wind = t.Turtle(visible=False)
  9. def canvas(size_x=1200, size_y=900): # 设置画布,有默认值
  10. t.setup(size_x, size_y)
  11. # 设置线的颜色以及size
  12. def pencil(size=5, color="black"):
  13. t.pensize(size)
  14. t.pencolor(color)
  15. def sun(): # 绘制太阳
  16. light.pensize(5)
  17. light.pencolor("black")
  18. sec = int(time.time())
  19. t.penup() # 画红色点
  20. t.goto(-530, 310)
  21. t.pendown()
  22. t.dot(100, "red")
  23. for i in range(1, 19): # 阳光效果
  24. light.penup()
  25. light.goto(-530, 310)
  26. light.seth(i * 20)
  27. light.forward(55)
  28. light.pendown()
  29. if (i + sec) % 2 == 1:
  30. light.forward(15)
  31. else:
  32. light.forward(7)
  33. def plant(): # 绘制天空以及大地
  34. t.penup() # 每个绘制函数开头都写了这个,防止龟龟绘制另外的图像移动时留下痕迹
  35. length = 900 * 0.318 # 将画布的纵向黄金分割
  36. t.home()
  37. t.goto(600, -450)
  38. t.fillcolor("#DAA520") # 分割填充大地
  39. t.begin_fill()
  40. t.left(90)
  41. t.forward(length)
  42. t.left(90)
  43. t.forward(1200)
  44. t.left(90)
  45. t.forward(length)
  46. t.left(90)
  47. t.forward(1200)
  48. t.end_fill()
  49. t.home() # 填充天空
  50. t.goto(600, length - 450)
  51. t.fillcolor("#B0C4DE")
  52. t.begin_fill()
  53. t.left(90)
  54. t.forward(900 - length)
  55. t.left(90)
  56. t.forward(1200)
  57. t.left(90)
  58. t.forward(900 - length)
  59. t.left(90)
  60. t.forward(1200)
  61. t.end_fill()
  62. def butterfly(pos_x=0, pos_y=0): # 绘制蝴蝶,这里会随机生成位置以及蝴蝶大小、颜色
  63. light.penup()
  64. light.goto(pos_x, pos_y)
  65. light.pendown()
  66. light.pensize(2)
  67. light.seth(45)
  68. color = ["#FF00FF", "#87CEFA", "#0000EE", "#FF4500", "#00FF00", "#00E5EE", "#FFFAFA"] # 一个颜色表,以及size表
  69. size = [6, 7, 8, 9, 10, 11, 12]
  70. tep_size = random.choice(size)
  71. light.fillcolor(random.choice(color))
  72. light.begin_fill()
  73. light.circle(tep_size, 270) # 绘制翅膀
  74. light.right(135)
  75. light.pensize(3)
  76. light.forward(tep_size / 2)
  77. light.right(45)
  78. light.forward(tep_size / 2)
  79. light.back(tep_size / 2)
  80. light.left(70)
  81. light.forward(tep_size / 2)
  82. light.back(tep_size / 2)
  83. light.right(25)
  84. light.pensize(4)
  85. light.back(2.05 * tep_size)
  86. light.seth(-90)
  87. light.pensize(2)
  88. light.circle(tep_size, -180)
  89. light.pensize(4)
  90. light.left(90)
  91. light.forward(tep_size * 2)
  92. light.back(tep_size * 2.5)
  93. light.end_fill()
  94. def botany(pos_x=0, pos_y=0, direction=0, flower=1, bend=10): # 植物函数,绘制向日葵,向日葵会迎风倒,效果很到位
  95. light.pensize(3)
  96. light.pencolor("black")
  97. light.penup()
  98. light.goto(pos_x, pos_y)
  99. light.pendown()
  100. light.left(90)
  101. light.fillcolor("#00CD00")
  102. light.begin_fill()
  103. light.circle(50, 90) # 绘制叶片
  104. light.left(90)
  105. light.circle(50, 90)
  106. light.penup()
  107. light.goto(pos_x, pos_y)
  108. light.pendown()
  109. light.seth(-90)
  110. light.pensize(6)
  111. light.forward(50)
  112. light.back(50)
  113. light.pensize(3)
  114. light.circle(50, -90)
  115. light.right(90)
  116. light.circle(50, -90)
  117. light.end_fill()
  118. if flower: # 判断是否有花,这里默认有花
  119. light.penup()
  120. light.goto(pos_x, pos_y)
  121. light.pendown()
  122. light.pensize(4)
  123. if direction:
  124. light.seth(80) # 绘制秆
  125. light.circle(130 - 5 * bend, 70 + 5 * bend, None)
  126. else:
  127. light.seth(-80)
  128. light.circle(130 - 5 * bend, -70 - 5 * bend, None)
  129. light.right(180)
  130. tep_x, tep_y = light.xcor(), light.ycor()
  131. light.forward(13)
  132. light.right(30)
  133. for i in range(6): # 绘制花瓣
  134. light.fillcolor("#FFD700")
  135. light.begin_fill()
  136. light.circle(15, 300)
  137. light.left(120)
  138. light.end_fill()
  139. light.goto(tep_x, tep_y)
  140. light.dot(36, "#FFB90F")
  141. def cloud(pos_x=0, pos_y=0, size=20): # 绘制云
  142. pos = int(time.time())
  143. pos %= 50
  144. light.penup() # 云没有要边框,所以没有pendown
  145. light.goto(pos*8+pos_x, pos_y)
  146. light.fillcolor("#E6E6FA")
  147. light.begin_fill()
  148. light.seth(-80)
  149. light.circle(size, 110)
  150. for i in range(1, 6): # 绘制下半部分
  151. light.right(100)
  152. light.circle(size, 110)
  153. light.left(120)
  154. for i in range(1, 7): # 绘制上半部分,上边进行了六次循环,但是之前就进行了一次绘制,这里有七次循环
  155. light.right(100)
  156. light.circle(size, 110)
  157. light.end_fill()
  158. # def draw(x, y): # 这里是之前调试用的拖拽函数响应函数,不需使用
  159. # t.goto(x, y)
  160. # print(t.xcor(), t.ycor())
  161. # def person(pos_x=0, pos_y=0): # 绘制人的函数,效果很拉跨,舍弃
  162. # t.penup()
  163. # t.goto(pos_x, pos_y)
  164. # t.pendown()
  165. #
  166. # t.dot(44, "#FFDEAD")
  167. # t.right(90)
  168. # t.penup()
  169. # t.forward(25)
  170. # t.right(15)
  171. # t.pendown()
  172. # pencil(10)
  173. # t.forward(50)
  174. #
  175. # t.right(35)
  176. # t.forward(50)
  177. # t.back(50)
  178. # t.left(90)
  179. # t.forward(27)
  180. # t.right(110)
  181. # t.forward(23)
  182. #
  183. # t.penup()
  184. # t.goto(pos_x, pos_y)
  185. # t.seth(-90)
  186. # t.forward(25)
  187. # t.right(15)
  188. # t.forward(20)
  189. # t.right(60)
  190. # t.pendown()
  191. # t.forward(50)
  192. # tep_x1, tep_y1 = t.xcor(), t.ycor()
  193. # t.back(50)
  194. # t.right(160)
  195. # t.forward(30)
  196. # t.seth(90)
  197. # t.forward(20)
  198. #
  199. # t.penup()
  200. # t.goto(tep_x1, tep_y1)
  201. # t.seth(-145)
  202. # pencil(6)
  203. # t.pendown()
  204. # t.forward(50)
  205. # t.right(90)
  206. # t.forward(20)
  207. # t.right(90)
  208. # t.forward(15)
  209. # t.right(90)
  210. # t.forward(20)
  211. # t.left(90)
  212. # t.forward(150)
  213. def star(pos_x=0, pos_y=0, size=10): # 绘制星星函数
  214. color = ["#FFFFE0", "#FFFF00"]
  215. light.penup()
  216. light.goto(pos_x, pos_y)
  217. angle = random.randint(0, 180)
  218. light.seth(angle)
  219. light.fillcolor(random.choice(color))
  220. light.begin_fill()
  221. for i in range(5): # 这个144度是查的资料
  222. light.right(144)
  223. light.forward(size)
  224. light.end_fill()
  225. def wind(): # 风函数,让图像看起来更有感觉,就是一条直线,加两个圆
  226. pos = int(time.time())
  227. pos %= 5
  228. color = ["#D3D3D3", "#CDCDB4"]
  229. tep_color = random.choice(color)
  230. light.penup()
  231. light.goto(pos*80-1000, 50)
  232. light.seth(0)
  233. light.pendown()
  234. light.pensize(5)
  235. light.pencolor(tep_color)
  236. light.forward(500)
  237. light.pensize(4)
  238. light.pencolor(tep_color)
  239. light.left(45)
  240. light.circle(50, 180)
  241. light.pensize(3)
  242. light.pencolor(tep_color)
  243. light.circle(30, 90)
  244. tep_color = random.choice(color)
  245. light.penup() # 画圈圈
  246. light.goto(pos*140-1040, 80)
  247. light.seth(0)
  248. light.pendown()
  249. light.pensize(5)
  250. light.pencolor(tep_color)
  251. light.forward(400)
  252. light.pensize(4)
  253. light.pencolor(tep_color)
  254. light.left(45)
  255. light.circle(40, 180)
  256. light.pensize(3)
  257. light.pencolor(tep_color)
  258. light.circle(25, 90)
  259. def lie(): # 这个函数是表达我对python的喜爱
  260. t.penup()
  261. t.goto(0, -360)
  262. pencil(0, "#FFA54F")
  263. t.write("节日快乐", align='center', font=('arial', 75, 'normal'))
  264. t.hideturtle()
  265. def dynamic():
  266. light.clear()
  267. sun()
  268. star(200, 200) # 右上角有星星注意观察 0.0
  269. star(260, 230, 15)
  270. star(180, 300)
  271. star(300, 100, 15)
  272. star(500, 290)
  273. star(420, 310, 15)
  274. star(300, 200)
  275. star(260, 230, 15)
  276. star(350, 352)
  277. star(500, 180, 15)
  278. star(560, 352)
  279. cloud(-530, 280, 20)
  280. cloud(300, 250, 30)
  281. wind()
  282. bend = int(time.time())
  283. bend %= 5
  284. bend += 14
  285. light.seth(-100-bend) # 初始向日葵叶片角度
  286. for i in range(14): # 生成向日葵
  287. if i % 2 == 0:
  288. botany(-520 + i * 50, -132, 0, 1, bend - i)
  289. botany(-340 + i * 50, -132, 0, 1, bend - i)
  290. else:
  291. botany(-430 + i * 50, -142, 0, 1, bend - i)
  292. botany(-230 + i * 50, -142, 0, 1, bend - i)
  293. pos_x = [45, -96, -100, 410, 300, 580, 230, -50, -400, -320, -212]
  294. pos_y = [45, -96, -100, 0, 20, 30, 29, -50, -20, -43, 10]
  295. for i in range(6): # 生成蝴蝶,这里便于观察到结果,蝴蝶有点大
  296. butterfly(random.choice(pos_x), random.choice(pos_y))
  297. t.ontimer(dynamic, 1000)
  298. def piant(): # 这里是将绘制全放在这个函数里,让main看起来简洁
  299. t.tracer(False)
  300. t.delay(0)
  301. canvas()
  302. pencil()
  303. plant()
  304. lie()
  305. dynamic()
  306. if __name__ == "__main__":
  307. piant()
  308. # t.ondrag(draw, btn=1, add=None)
  309. t.mainloop()

 

参考:http://t.csdn.cn/A9nfn

标签:
声明

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

在线投稿:投稿 站长QQ:1888636

后台-插件-广告管理-内容页尾部广告(手机)
关注我们

扫一扫关注我们,了解最新精彩内容

搜索