oops ! my mistake :-D

On 7/31/06, Bruno Desthuilliers <[EMAIL PROTECTED]> wrote:
> Amit Khemka wrote:
> > how about:
> >
> > vals = []
> > for val in mydict.values():
> >   try: vals.extend(val)
> >   except: vals.append(val)
>
> >>> l = []
> >>> l.extend((1, 2))
> >>> l
> [1, 2]
> >>> l.extend('ab')
> >>> l
> [1, 2, 'a', 'b']

Oops, my mistake ... jumped in too quickly !

cheers,
-- 
----
Amit Khemka -- onyomo.com
Home Page: www.cse.iitd.ernet.in/~csd00377
Endless the world's turn, endless the sun's Spinning, Endless the quest;
I turn again, back to my own beginning, And here, find rest.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to