笔试准备
- 如何打乱一个列表
1 | from random import shuffle |
py变量名称是区分大小写的
py中的闭包
1
2
3
4
5
6def a(x):
def b(a):
print("hhhh")
a +=1
return
return b(x)
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Jacker-zzk's Blog!
1 | from random import shuffle |
py变量名称是区分大小写的
py中的闭包
1 | def a(x): |