re模块–KMP模式匹配

海龟绘图模块–turtle的使用

本节讲解Python头歌课程附加内容–turtle的使用。包含具体功能介绍与演示实例。最后会有一个实践作业进行实操。

附上官方文档:https://docs.python.org/zh-cn/3/library/turtle.html

模块介绍

turtle模块属于Python的标准库,是一个入门级的图形绘制函数库。

功能介绍

以一个五角星为例进行turtle图形绘制的演示

代码如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import turtle

turtle.pensize(5)
turtle.setup(600, 600, 0, 0)
turtle.up()
turtle.setx(-100)
turtle.pd()
turtle.title("桂电欢迎你")
turtle.color("purple", "red")
turtle.begin_fill()
for i in range(5):
turtle.fd(180)
turtle.right(144)
turtle.end_fill()
turtle.done()

结果演示

上例包含了海龟画图的基本设置与步骤,下面我们具体介绍。

第一步:画笔设置

  • turtle.pensize(5):线条粗细
  • turtle.up():提起画笔
  • turtle.setx(-100):画笔初始点移动
  • turtle.down():放下画笔
  • t.goto(x, y):使得海龟移动到指定像素坐标(以中心点为原点)

第二步:颜色填充

  • turtle.color("purple", "red"):参数依次是 画笔颜色、填充颜色
  • t.fillcolor("#xxxxx"):指定填充颜色(需要begin和end)
  • t.pencolor("#xxxxx"):指定画笔的颜色

第三步:海龟动作

  • turtle.fd(180):正方向移动180像素
  • turtle.right(144):向右转144度
  • t.bk(23):后退23像素
  • t.write("hello",font=("楷体“,15,”normal")):在屏幕上指定位置写入字符串
  • t.circle(45,180):以半径为45画圆180度

第四步:窗口设置

  • turtle.setup(600, 600, 0, 0):参数依次是 画布宽度、长度、与上屏幕距离、与左屏幕距离
  • turtle.title("桂电欢迎你"):图画标题
  • t.screensize(1000, 600, 'white'):指定窗口的大小(注意与画布大小的区别)
  • t.bgpic("bg3.gif"):指定背景图片(注意与画布大小匹配)

代码实例:2022年春节

代码实例

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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
import turtle as t
import random

# 此函数用于定点跳转海龟位置,参数为横纵坐标
def go(x, y):
t.up() # 抬起画笔
t.goto(x, y) # 位置跳转(不改变方向)
t.down() # 放下画笔

# 正方形绘画函数:用于简化操作,进行常规正方形的绘画
def square(w,h):
t.fd(w)
t.left(90)
t.fd(h)
t.left(90)
t.fd(w)
t.left(90)
t.fd(h)
t.left(90)

# 房子、车辆绘画函数:用于配置房子、车辆的形状、颜色
def house(x, y):
# 主墙面
go(x, y)
t.fillcolor("#D45D00")
t.begin_fill()
square(372, 184)
t.end_fill()
# 对联1
go(-112, -211)
t.fillcolor("#E4002B")
t.begin_fill()
square(33, 147)
t.end_fill()
# 对联2
go(206, -211)
t.fillcolor("#E4002B")
t.begin_fill()
square(33, 147)
t.end_fill()
# 横批
go(31, -86)
t.fillcolor("#E4002B")
t.begin_fill()
square(94, 30)
t.end_fill()
# 门
go(52, -223)
t.fillcolor("#9BCBEB")
t.begin_fill()
t.fd(50)
t.left(90)
t.fd(73)
t.circle(25, 180)
t.fd(75)
t.left(90)
t.end_fill()
# 福字
go(-62, -129)
t.fillcolor("#E4002B")
t.begin_fill()
t.right(45)
t.fd(40)
t.left(90)
t.fd(40)
t.left(90)
t.fd(40)
t.left(90)
t.fd(40)
t.left(135)
t.end_fill()

# 顶部
go(-141, -39)
t.fillcolor("#C6A992")
t.begin_fill()
square(408, 10)
t.fd(408)
t.left(60)
t.fd(85)
t.right(105)
t.fd(44)
t.left(90)
t.fd(10)
t.left(90)
t.fd(55)
t.left(105)
t.fd(88)
t.left(120)
t.end_fill()
go(-141, -29)
t.fillcolor("#006BA6")
t.begin_fill()
t.left(60)
t.fd(90)
t.right(60)
t.fd(404)
t.right(120)
t.up()
t.fd(90)
t.down()
t.right(60)
t.fd(404)
t.right(180)
t.end_fill()

# 侧墙
go(267, -39)
t.fillcolor("#F0E87B")
t.begin_fill()
t.left(180)
t.fd(17)
t.left(90)
t.fd(184)
t.left(135)
t.fd(105)
t.left(45)
t.fd(150)
t.left(45)
t.fd(30)
t.up()
t.left(105)
t.fd(60)
t.end_fill()

t.fillcolor("#DBC8B6")
t.left(180)
t.fd(61)
t.begin_fill()
t.right(105)
t.fd(29)
t.left(45)
t.down()
t.fd(17)
t.up()
t.left(135)
t.fd(44)
t.left(105)
t.fd(30)
t.left(120)
t.end_fill()

# 灯笼
go(293, -16)
t.pensize(4)
t.fd(93)
t.up()
t.bk(30)
t.down()
t.right(90)
t.fd(30)
t.pensize(2)
t.fillcolor("#D45D00")
t.begin_fill()
t.right(90)
t.fd(15)
t.left(90)
t.fd(15)
t.left(90)
t.fd(30)
t.left(90)
t.fd(15)
t.left(90)
t.fd(15)
t.end_fill()

t.left(90)
t.up()
t.fd(15)
t.down()
t.fillcolor("#E4002B")
t.begin_fill()
t.right(90)
t.circle(30)
t.end_fill()
t.left(180)

# 车

go(-453, -174)
t.fillcolor("#003594")
t.begin_fill()
t.fd(20)
t.right(90)
t.pensize(4)
t.circle(25)
t.left(90)
t.up()
t.fd(50)
t.down()
t.pensize(2)
t.fd(80)
t.right(90)
t.pensize(4)
t.circle(25)
t.left(90)
t.up()
t.fd(50)
t.down()
t.pensize(2)
t.fd(30)
t.left(90)
t.fd(60)
t.left(90)
t.fd(40)
t.right(45)
t.fd(70)
t.left(45)
t.fd(110)
t.left(60)
t.fd(55)
t.left(30)
t.fd(60)
t.left(90)
t.end_fill()

t.fillcolor("#407EC9")
t.begin_fill()
go(-453, -174)
t.fd(20)
t.right(90)
t.pensize(4)
t.circle(25)
t.end_fill()
t.left(90)
t.up()
t.fd(50)
t.down()
t.pensize(2)
t.fd(80)
t.right(90)
t.pensize(4)
t.fillcolor("#407EC9")
t.begin_fill()
t.circle(25)
t.end_fill()
t.left(90)
t.up()
t.fd(50)
t.down()
t.pensize(2)
t.fd(30)
t.left(90)
t.fd(60)
t.left(90)
t.fd(40)

t.fillcolor("#C8D8EB")
t.begin_fill()
t.fd(130)
t.right(105)
t.fd(51)
t.right(75)
t.fd(66)
t.right(45)
t.fd(70)
t.end_fill()
t.left(45)
t.bk(70)
t.left(90)
t.fd(50)
t.right(90)

go(-453, -114)
t.fd(20)
t.up()
t.right(90)
t.pensize(3)
t.fd(15)
t.left(90)
t.fd(80)
t.down()
t.fd(40)
t.pensize(2)

# 太阳绘画函数:用于绘制图片中的太阳
def sun(x, y):
go(x, y)
t.fillcolor("#FF671F")
t.begin_fill()
t.circle(65)
t.end_fill()
t.pensize(3)
go(-380, 185)
t.left(90)
t.circle(20, 180)

t.left(90)
t.up()
t.fd(90)
t.down()
t.left(90)
t.circle(20, 180)
t.right(90)
t.up()
t.fd(10)
t.left(90)
t.fd(50)
t.down()
t.left(90)
t.circle(50, 45)
t.circle(50, -75)
t.circle(50, 30)
t.left(90)

# 具体树木绘画函数,通过递归进行。
SIZE_TREE = 10
def draw_tree(size):
if size > SIZE_TREE:
# 右边

t.forward(size)
t.right(20)
draw_tree(size / 1.5)
# 左边
t.left(40)
draw_tree(size / 1.5)

# 回到之前的树枝
t.right(20)
# 给最后的树枝画绿色
if size / 2 <= SIZE_TREE:
t.color('green')
else:
t.color('brown')
t.backward(size)

# 雪花生成函数:通过随机数生成雪花位置
def snow(snow_count):
t.hideturtle()
t.speed(500)
t.pensize(2)
for i in range(snow_count):
t.pencolor("white")
t.pu()
t.goto(random.randint(-500, 500), random.randint(-300, 300))
t.pd()
dens = random.randint(5, 6)
snowsize = random.randint(5, 10)
for _ in range(dens):
t.fd(snowsize)
t.bk(snowsize)
t.right(360 / dens)

# 本函数为背景初始化函数,包括窗口和画布大小、背景图片、绘画速度
def bg():
t.setup(1000, 600)
t.screensize(1000, 600, 'white')
t.bgpic("bg3.gif")
t.speed(10)
t.title("2022年春节")

# 下面两个函数为图片中树的绘画(调用draw_tree函数,使用递归方法)
def Tree1(x, y):
go(x, y)
t.left(90)
t.pensize(3)
draw_tree(100)
t.right(90)
t.pensize(2)
t.pencolor("black")

def Tree2(x, y):
go(x, y)
t.pensize(3)
draw_tree(50)
t.pensize(2)

# 文字写入函数:用于对联、福字、祝福语的写入与位置、颜色设置
def Words_set(w1,w2,w3,w4,w5):
t.pencolor('black')
x = -106
y = -89
for i in w1:
go(x, y)
t.write(i, font=('楷体', 15, 'normal'))
y = y-20

x = x + 317
y = -89
for i in w2:
go(x, y)
t.write(i, font=('楷体', 15, 'normal'))
y = y - 20

x = 38
y = -80
for i in w3:
go(x, y)
t.write(i, font=('楷体', 15, 'normal'))
x = x + 20

x = -50
y = -145
go(x, y)
t.write(w4, font=('楷体', 25, 'normal'))

x = -260
y = 140
for i in w5:
go(x, y)
r = random.random()
g = random.random()
b = random.random()
t.pencolor(r, g, b)
t.write(i, font=('楷体', 50, 'normal'))
x = x + 50

# 主函数,用于调用其他函数完成工作
def main():
# 用于自定义你的对联内容
words1 = input("请输入你的上联(7言):")
words2 = input("请输入你的下联(7言):")
words3 = input("请输入你的横批(4字):")
words4 = "福"
words5 = 'Happy New Year!'

# 以下为turtle的操作,进行具体的图形绘画(具体功能在上介绍)
bg()
Tree1(400, -150)
house(-122, -223)
sun(-375, 115)
Tree2(380, -160)
Words_set(words1, words2, words3, words4, words5)
snow(50)

if __name__ == '__main__':
main()
t.done()

结果截图

collections容器类

os 模块