Namedtuple not defined on windows interpreter

Viewed 2599

I'm trying to follow the usage example of namedtuple( ) from the documentation, but I keep getting namedtuple is not defined.

Traceback

1 Answers

You need import collections up top, then you can do collections.namedtuple

You can also do from collections import namedtuple and it should work like in the docs

Related