In [2]:
from collections import namedtuple
In [3]:
Coefficients = namedtuple('Coefficients', 'C0 C1 C2 C3 C4'.split())
In [5]:
coeffs= Coefficients(1,2,3,4, 5)
In [15]:
Out[15]:
In [ ]: