0
在把一些IPython的筆記本電腦,以jupyter和python3 我絆倒在我的筆記本下面兩行的靜脈:在哪裏設置,收藏在python3
from sets import Set
from collections import defaultdict
在哪裏可以找到他們Python3 ?
在把一些IPython的筆記本電腦,以jupyter和python3 我絆倒在我的筆記本下面兩行的靜脈:在哪裏設置,收藏在python3
from sets import Set
from collections import defaultdict
在哪裏可以找到他們Python3 ?
sets
模塊是deprecated since Python 2.6。您需要改爲使用內置類型set
and frozenset
。
collections.defaultdict
在Python 3中仍然活着,所以你不需要改變任何東西。
可能重複的[Python - 無法導入從集(「無模塊命名集」)](http://stackoverflow.com/questions/12028204/python-cant-import-set-from-sets-無模塊命名集) – jonrsharpe