I create a named tuple like this:
from collections import namedtuple
spam = namedtuple('eggs', 'x, y, z')
ham = spam(1,2,3)
Then I can access elements of ham with e.g.
>>> ham.x
1
>>> ham.z
3
In the interpreter,
>>> ham
eggs(x=1, y=2, z=3)
But what if I just want to get 'eggs'? The only way I've been able to think of is
>>> ham.__repr__.split('(')[0]
'eggs'
but this seems a bit messy. Is there a cleaner way of doing it?
Why do named tuples have this 'eggs' aspect to them if it isn't possible to access it without resorting to a private method?