一.集合 1.集合(set): 把不同的元素组成一起形成集合,是python基本的数据类型.集合元素(set elements):组成集合的成员 python的set和其他语言类似, 是一个无序不重复元素集, 基本功能包括关系测试和消除重复元素. 集合对象还支持union(联合), intersection(交), difference(差)和sysmmetric difference(对称差集)等数学运算. sets 支持 x in set, len(set),和 for x in set.作…
该书关于深浅拷贝的论述: 6.20. *Copying Python Objects and Shallow and Deep Copies "when shallow copies are made, the string is explicitly copied and a new (string) object created" 这是错的.当一个容器对象被浅拷贝,字符串也是和列表一样,都只是建立引用. 奇特的是,作者在这句话之前写有自相矛盾的句子: A shallow copy…