1.元组
元组是一种固定长度、不可变的对象序列。元组使用小括号,常用逗号分隔序列值。
tup = (4 ,5 ,6)
print(tup)
元组可以包含元组元素
tup_test = ( (4 ,5 ,6) ,(1 ,2 ,3) )
print(tup_test)
2.列表
列表长度可变,内容也可修改。使用中括号或者list来定义列表。
test_list = [1 ,2 ,3]
print(test_list)
3.字典
字典是拥有灵活尺寸的键值对集合。常使用大括号,键值对用逗号分隔。
test_dict = {'a':1 ,'b':2}
print(test_dict)
4.集合
集合是一种无序且元素唯一的容器。通过set函数或者是用字面值集与大括号的语法。
test = {1 ,2 ,3}
print(test)