元组 ()
元组和字符串类似,是不可变的。支持嵌套
判断是否包含某个元素
t=('a','b','c') print 'a' in d # true print 'd' in d # false