R u sure @ 'ease of access' or is it 'ease of writing'?

On Fri, May 23, 2014 at 1:43 PM, kracekumar ramaraju <
kracethekingma...@gmail.com> wrote:

> Yes. Attributes are fixed. The advantage over dictionary is ease of access
> like p.foo rather than p['foo'] or p.get('foo').
>
>
> On Fri, May 23, 2014 at 1:34 PM, Noufal Ibrahim KV
> <nou...@nibrahim.net.in>wrote:
>
> > 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
> >
>
>
>
> --
>
> *Thanks & Regardskracekumar"Talk is cheap, show me the code" -- Linus
> Torvaldshttp://kracekumar.com <http://kracekumar.com>*
> _______________________________________________
> BangPypers mailing list
> BangPypers@python.org
> https://mail.python.org/mailman/listinfo/bangpypers
>
_______________________________________________
BangPypers mailing list
BangPypers@python.org
https://mail.python.org/mailman/listinfo/bangpypers

Reply via email to