基本数据结构0 数据结构定义(data structure)1.列表(list)1.1创建列表1.2列表索引(index)1.3访问列表值 list[index]1.4 切片 list[first_index : last_index+1]1.5 python列表脚本操作符1.6 列表函数 fun(list)1.7 列表方法2. 元组(tuple)2.1 创建元组2.2 获取元组值2.3 元组操作2.4 元组脚本操作符2.5 元组函数3. 字典(dictionary)3.1 创建字典3.2 获取字典值3.3 修改字典3.4 `字典内置函数`3.5 字典方法4. 集合(set)4.1 创建集合