摘要: set集合set集合是一个无序并且不重复的元素集合。创建一个set集合>>> name = set('hello word')>>> name{'o', 'e', 'h', 'r', 'd', 'l', ' ', 'w'}set的方法add()作用:向set集合里面添加新的元素>>> name = ... 阅读全文
posted @ 2016-01-21 23:27 binges 阅读(217) 评论(0) 推荐(0) 编辑
摘要: collectionscollections是Python内建的一个集合模块,提供了许多有用的集合类。调用collections的方法:在程序前面添加import collections或from collections import * #$ 以下示例都使用这种方式计数器(counter)coun... 阅读全文
posted @ 2016-01-21 23:27 binges 阅读(575) 评论(0) 推荐(0) 编辑