list()
列表可以嵌套,列表,字典,元组等类型,可任意嵌套
m=[ [1,2,3], [4,5,6], [7,8,9] ]
l={'a','b','c'} print 'a' in l # true print 'd' in l # false