Advanced Python
Advanced Python
整理自be better coder微信公众号、Fluent Python, Second Edition、码农高天和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
a, *b, c = [1, 2, 3, 4, 5]
sum(*b)
list = [1, *b, 5]
def func(*args)...