标签:弱类型 静态 insert 效率 索引 error 连接 add 反转
[]
表示list[index]
index(value[,start,[stop]])
count(value)
len()
list[index]=value
append(obj)
insert(index,obj)
extend(iteratable)
+
__add__()
方法*
remove(value)
pop([index])
clean()
reverse()
sort(key=None,reverse=False)
lst.sort(key=funcitionname)
高阶函数in
返回bool值
举例:
+ [3,4] in [1,2,[3,4]]
+ for x in [1,2,3,4]
浅拷贝
copy()
深拷贝
结构和引用分别拷贝
copy模块提供了deepcopy:
import copy
lst1= copy.deepcopy(lst0)
标签:弱类型 静态 insert 效率 索引 error 连接 add 反转
原文地址:https://www.cnblogs.com/wanghonghao/p/12578896.html