当前位置: 代码迷 >> 综合 >> python中关于列表(list)、元组(tuple)、词典(dictionary)和集合(set)的小结
  详细解决方案

python中关于列表(list)、元组(tuple)、词典(dictionary)和集合(set)的小结

热度:75   发布时间:2023-12-15 16:56:50.0
类型 特征
列表(list) [  ]

append()

extend()

insert()

list()

remove(已知元素)

del 索引

pop()

先删除再添加

in 

not in

 

比如:‘python’ in list1

元组(tuple)

(,)

元组中最重要的特征是逗号

temp[:2] + ('a',)+temp[2:]

 

通过复制得到[:]

tuple()

temp[:1] +temp[2:] 先删除再添加

in 

not in

 

比如:'python' in tuple1

词典(dictionary)

{ : }

一个键对应一个值

{1 : 'python',  2 : 'c language'}

 

复制copy()

 

update() 比如dict2.update(小饼干 = ‘oreo’)

clear()

pop()  给定键弹出

popitem() 随机弹出一项

 

 

先删除后添加

 

 

dict2.keys()   返回键

dict2.values()   返回键值

dict2.items()   返回一组键和键值

dict2.get()根据键查找词典中数据

集合(set)

{ }

集合中的数值是没有重复的

add()

set()

remove(已知的元素) 先删除后添加

in

not in

 

  相关解决方案