Le Lundi 05 Juin 2006 19:18, [EMAIL PROTECTED] a écrit :
> Any thoughts?

In [24]: a, b = (lambda  : 'works like this'), (lambda a, b : (a,b))

In [25]: a(*())
Out[25]: 'works like this'

In [26]: b(4,3)
Out[26]: (4, 3)


-- 
_____________

Maric Michaud
_____________

Aristote - www.aristote.info
3 place des tapis
69004 Lyon
Tel: +33 426 880 097
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to