On Fri, May 23 2014, kracekumar ramaraju wrote:

> You can use namedtuple.
>
> from collections import namedtuple
> Person = namedtuple('Person', ['foo', 'bar', 'baz'])
> p = Person(foo='foo', bar='bar', baz='baz')

[...]

Much better although with namedtuple, the attributes are fixed aren't
they? I don't use collections as much as I should.


-- 
Cordially,
Noufal
http://nibrahim.net.in
_______________________________________________
BangPypers mailing list
BangPypers@python.org
https://mail.python.org/mailman/listinfo/bangpypers

Reply via email to