简单了解下 python 数据结构

发布时间:2020-06-09编辑:脚本学堂
python 数据结构 简单示例。

#列表
shoplist = ['apple','mango','carrot']#元组
zootuple = ('wolf','wlephant','penguin'),不可变#字典
userdict = {

python 数据结构 简单示例。

#列表
shoplist = ['apple','mango','carrot']

#元组
zootuple = ('wolf','wlephant','penguin'),不可变

#字典
userdict = {'name':'flankwang','age':14}

#序列
列表、元组、字典都是序列