Dennis Lee Bieber a écrit :
> On Thu, 22 Mar 2007 03:27:37 +1100, Steven D'Aprano
> <[EMAIL PROTECTED]> declaimed the following in
> comp.lang.python:
> 
>> So what should "a b c d" be? 
>>
>> (a, b, c, d)
>> a(b, c, d)
>> a(b, (c, d))
>> a(b(c, d))
>> a(b(c(d)))
>>
>> Have I missed anything? Which is the "right" way? Who can tell?
>>
>       a(b)(c)(d)
> or, explicit,
>       ((a(b))(c))(d)
> 
> <G>

(Yeah ((Lisp) (is back)))
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to