集合在哪里,python3中的集合

时间:2015-07-11 11:11:50

标签: python-3.x set

将一些ipython笔记本转换为jupyter和python3 我在笔记本上绊倒了以下两行:

from sets import Set
from collections import defaultdict

我在哪里可以找到Python3?

1 个答案:

答案 0 :(得分:0)

sets模块是deprecated since Python 2.6。您需要使用内置类型set and frozenset代替。

collections.defaultdict在Python 3中运行良好,所以你不需要改变任何东西。