4

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

Traceback

gmelodie
  • 411
  • 4
  • 18
Paw in Data
  • 1,262
  • 2
  • 14
  • 32

1 Answers1

10

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

pacukluka
  • 728
  • 4
  • 18