- 清空List —— a=[]、del a[:]
- 复制List——b=a (改变指向)、import copy ; b=copy.deepcopy(a) (深拷贝)
- List的长度—— len(a)
- 函数返回两个或以上参数
def calculate(a,b): c = a + b return (a,b,c) x,y,z = calculate(1,2)
- 创建list——sample_list = [ initial_value for i in range(10)]
- 产生随机数——random.uniform(0, 1)
- 随机列表——x = [random.random() for i in range(R)]