列表 list

[]

del 语法

del arr[0]

元组 tuple 和序列

tuple=(1,23,4)
emptyTuple=()
oneTuple(1,)

集合

col = {1, 2, 3}
emptyCol = set()

字典

dic={"name":"value", "age": 10}
emptyDic={}

参考资料

https://docs.python.org/zh-cn/3/tutorial/controlflow.html