将一些ipython笔记本转换为jupyter和python3 我在笔记本上绊倒了以下两行:
from sets import Set
from collections import defaultdict
我在哪里可以找到Python3?
答案 0 :(得分:0)
sets
模块是deprecated since Python 2.6。您需要使用内置类型set
and frozenset
代替。
collections.defaultdict
在Python 3中运行良好,所以你不需要改变任何东西。