I think it should result
result = func1(func2, arg)
if you want
result = func1(func2(arg))
you should use
result = func1 (func2 arg)
if
... = word1 word2 word3 ...
then only word "word1" should be call to func "word1" with parameters
word2, word3 etc


> If you have
> result = func1 func2 arg
> is it
> result = func1(func2, arg)
> or
> result = func1(func2(arg))
>
> Miki <[EMAIL PROTECTED]>http://pythonwise.blogspot.com


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to