python之list,tuble,dict和set
Python重要数据结构之list, tuple, dict, setList
创建方法:使用方括号[ ]创建一个listL = []
L = ['a','b','c']
有序性:有序
可更改性:可更改
元素唯一性:可重复
访问方式:读取/更改:List按照数字索引访问内容,起始索引为0(不要越界)print L[0]
L[1] = 'string1'List可以使用负数索引完成倒序访问,起始索引为
原创
2017-08-23 22:58:21 ·
3140 阅读 ·
0 评论