前言

今天的Python课讲到第八章Python计算生态。

Python诞生至今,由于其简洁性,易读性,可拓展性,以及开源模式,Python官方和广大用户一起建立起了以标准库和第三方库为代表的大规模编程计算生态,可以说是相当的强大。

课后胡老师给我们留了作业,要用turtle库画一颗树

QQ截图20220525022350.png

就是类似这样的

具体实现

一开始我画的并不好,各种奇形怪状的图案,可惜了没有截图,随着代码的修改完善,那些画成奇怪图案的代码被优化后就不存在了。

交作业后老师在课堂上说我写的代码挺好的,之后有同学来问我要源码

下面就直接放最后交作业的代码了

源码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
import turtle

"""
Python 3.10.0
@Author:Liyezhi
@Date:2022-05-12
"""

turtle.screensize(500, 500, "black")
# 2 设置画笔属性
turtle.pensize(2)
turtle.pencolor("white")
turtle.speed(15)

# 画树的左边
def drawLeft(n, sideLength, inSideLength, bladeLength):
# (为了使图像位于画布中心)设置偏移量
turtle.penup()
turtle.goto(0, 360)
turtle.pendown()
for i in range(n):

# 制造锯齿纹理
j = 0
while j <= sideLength:
turtle.seth(225)
turtle.right(45)
turtle.forward(bladeLength)
turtle.left(90)
turtle.forward(bladeLength)
# 求等腰三角行锯齿的底边长
length = pow(bladeLength * bladeLength + bladeLength * bladeLength, 0.5)
j = j + length

turtle.seth(10)
turtle.forward(inSideLength)
sideLength = sideLength + 25
inSideLength = inSideLength + 15

# 画树的右边
def drawRight(n, sideLength, inSideLength, bladeLength):
turtle.penup()
turtle.goto(0, 360)
turtle.pendown()
for i in range(n):
j = 0
while j <= sideLength:
turtle.seth(315)
turtle.left(45)
turtle.forward(bladeLength)
turtle.right(90)
turtle.forward(bladeLength)
length = pow(bladeLength * bladeLength + bladeLength * bladeLength, 0.5)
j = j + length

turtle.seth(170)
turtle.forward(inSideLength)
sideLength = sideLength + 25
inSideLength = inSideLength + 15

# 画左树底部
def drawLeftBottom():
#获取海龟当前的x,y轴坐标
x = turtle.xcor()
y = turtle.ycor()

turtle.penup()
turtle.goto(x, y)
turtle.pendown()
turtle.seth(200)
turtle.forward(66)
turtle.seth(10)
turtle.forward(88)
turtle.seth(0)
turtle.forward(10)
turtle.seth(200)
turtle.forward(36)
turtle.seth(5)
turtle.forward(88)

# 画右树底部
def drawRightBottom():
x = turtle.xcor()
y = turtle.ycor()
turtle.penup()
turtle.goto(x, y)
turtle.pendown()
turtle.seth(340)
turtle.forward(66)
turtle.seth(170)
turtle.forward(88)
turtle.seth(180)
turtle.forward(10)
turtle.seth(340)
turtle.forward(36)
turtle.seth(175)
turtle.forward(88)

# 画树根
def drawTreeRoot():
x = turtle.xcor()
y = turtle.ycor()
turtle.penup()
turtle.goto(x - 20, y)
turtle.pendown()
turtle.seth(270)
turtle.forward(66)
y2 = turtle.ycor()
turtle.sety(y2+10)
turtle.circle(25)
turtle.seth(0)
turtle.sety(y2)
turtle.forward(50)
turtle.seth(90)
turtle.forward(66)

if __name__ == '__main__':
# 树冠
# 设置填充树内部的颜色
turtle.fillcolor("#7aa589")
turtle.begin_fill()
drawLeft(8, 25, 15, 4)
drawLeftBottom()
turtle.setx(0)
drawRight(8, 25, 15, 4)
drawRightBottom()
turtle.setx(0)
turtle.end_fill()
# 树根
# 设置填充树跟的颜色
turtle.fillcolor("#ab987f")
turtle.begin_fill()
#换笔色
turtle.pencolor("#ab987f")
drawTreeRoot()
turtle.end_fill()

# 画完将海龟箭头隐藏起来
turtle.hideturtle()
# 保持窗口
turtle.done()

效果图:

U652JGYS2TI7SCNFN.png

最后

这个作业真的很好玩,期间会遇到一些有趣的问题。我的画图思路是先画左半边树冠,然后画右半边树冠,最后画出树根,从一开始左边树画的角度不知道在哪里,而且边是直线的,当时并没有等腰三角形的小锯齿,然后就是左边和右边不等高啊、填充的颜色并没有把树内部都填充完啊、树根画到了树冠中啊等等问题,看着画出来的四不像,把自己都给整笑了,可能这也是编程的一种乐趣吧。我觉得写代码和写文章一样,不论是好的文章还是好的代码,其实都是修改出来的。