列表元组字典集合的定义操作与综合练习
Posted fkfkfk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了列表元组字典集合的定义操作与综合练习相关的知识,希望对你有一定的参考价值。
l = [‘Lucy‘,‘Abb‘,‘Lily‘] l.append(‘Abb‘) l.pop() print(1) t = (‘Lucy‘,‘Abb‘,‘Lily‘) scores = [60,78,90] d = {‘Lucy‘:60,‘Abb‘:78,‘Lily‘:90} d[‘Abb‘] = 77 d[‘Rose‘] = 68 d.pop(‘Abb‘) print(d) sl = {‘Lucy‘,‘Abb‘,‘Lily‘} s2 = {‘Lucy‘,2,3} sl.add(12) s2.remove(3) print(sl,s2) dl = dict(zip(l,scores)) print(1) print(scores) print(dl)
以上是关于列表元组字典集合的定义操作与综合练习的主要内容,如果未能解决你的问题,请参考以下文章