Answers for "nameerror: name 'defualtdict' is not defined"

0

nameerror name 'defaultdict' is not defined

You're not importing defaultdict. Do either:

from collections import defaultdict
or

import collections
d = collections.defaultdict(list)
Posted by: Guest on December-14-2020
0

nameerror name 'defaultdict' is not defined

import collections
d = collections.defaultdict(int)
d
defaultdict(<type 'int'>, {})
Posted by: Guest on December-14-2020

Code answers related to "nameerror: name 'defualtdict' is not defined"

Python Answers by Framework

Browse Popular Code Answers by Language