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