创建set的基本语法:
s = set(['Adam', 'Lisa', 'Bart', 'Paul'])
创建dict的基本语法:
d = {
'Adam': 95,
'Lisa': 85,
'Bart': 59
}
- 可以简单地使用 d[key] 的形式来查找对应的 value
- dict本身提供get 方法,在Key不存在的时候,返回None
print d.get('Bart') 59 print d.get('Paul') None
创建tuple的基本语法:
t = ('Adam', 'Lisa', 'Bart') #tuple一旦创建完毕,就不能修改了 #获取 tuple 元素的方式和 list 是一模一样的,我们可以正常使用 t[0],t[-1]等索引方式访问元素