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]:
OrderedDict([('C0', 1), ('C1', 2), ('C2', 3), ('C3', 4), ('C4', 5)])

In [ ]: