For example:
>>> Spoken = namedtuple("Spoken", ["loudness", "pitch"])
>>> s = Spoken(loudness=90, pitch='high')
>>> str(s)
"Spoken(loudness=90, pitch='high')"
What I want is:
>>> str(s)
90
That is I want the string representation to display the loudness attribute. Is this possible ?