A.
数字(Numbers):int(整型),long(长整型),complex(复数),float(浮点型),bool(布尔型)
B.
字符串( String ): "Python" , 'Python'
C.
列表( List ): [1,2,3,4],[5,6,7,[8,9],10]
D.
字典( Dictionary ): {1:"study",2:"Python"}
E.
元组( Tuple ):( 1, "shuai",2 )
F.
集合(Set):{'P', 'y', 't', 'h', 'o', 'n'}