列表 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 列表 list del 语法 元组 tuple 和序列 集合 字典 参考资料 更多学习 个人 Github 个人公众号 更多实时资讯,前沿技术,生活趣事。尽在【老马啸西风】 交流社群:交流群信息 Python-07-Function 函数的定义和使用 Python-08-generator 生成器 yeild