下方课件区域方向键控制翻页,f
键全屏。
示例
执着于表白的 Python。
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 | import tkinter as tk
import random
# 按钮被点击后执行这个函数
def hit_me():
print('不喜欢')
# 每当鼠标 Enter 按钮时,执行这个函数
# 按钮就逃跑了
def escape(event):
b = event.widget
# 获取按钮宽度和高度以及鼠标的x,y坐标
width = b.winfo_width()
height = b.winfo_height()
mouse_x = b.winfo_x() + event.x
mouse_y = b.winfo_y() + event.y
while True:
# 随机新的按钮位置
x = random.randint(0, 800)
y = random.randint(0, 600)
# 新的位置没有在鼠标上,就跳出循环
if (x < mouse_x or x > mouse_x + width and x + width < 800) and (
y < mouse_y or y > mouse_y + height and y + height < 600):
break
# 将按钮移动到新位置
b.place(x=x, y=y)
# 创建一个窗体
window = tk.Tk()
window.title('执着于表白的 Python') # 修改标题
window.geometry('800x600') # 设定窗口分辨率 800x600
# 创建一个按钮
button = tk.Button(
window, # 父控件,即这个button属于window
text='不喜欢', # 显示在按钮上的文字
command=hit_me) # 点击按钮时执行的命令
# 监听按钮的消息,消息 <Enter> ,即鼠标进入时,调用escape函数
button.bind('<Enter>', escape)
# 把button打包到窗口上,默认情况居中显示在最上面
button.pack() # 按钮位置
# 显示窗口,开始处理各种窗口消息,这个循环不会退出,除非关闭窗口
window.mainloop()
|
作业
本次作业提供的是一个空的仓库,请 fork 后自己建文件做实验。
要求编写 Base64 编码 和 解码 代码并提交。
如果我没有明确说明,所有作业都不必须提交实验报告,但是代码请写好注释。
本次 Base64 编码过程应该输入一个二进制序列(Python 中 bytes
或 bytearray
类型数据),输出该二进制序列经过 base64
编码后的结果,类型是字符串;解码则反过来。此外,需要自行编写一段生成测试用例并进行测试的代码。