1. 如何打乱一个列表
1
2
3
4
from random import shuffle
lists = range(10)
shuffle(lists)

  1. py变量名称是区分大小写的

  2. py中的闭包

    1
    2
    3
    4
    5
    6
    def a(x):
    def b(a):
    print("hhhh")
    a +=1
    return
    return b(x)