I have a small program that goes something like this def funcA() : pass def funcB() : pass def funcC() : pass def determine(f): t = f() return t What I would like to do is be able to n = determine(funcA) m = determine(funcB) But I can't really figure out how to do this (I think it is possible :) Cheers Tommy "Any intelligent fool can make things bigger, more complex, and more violent. It takes a touch of genius -- and a lot of courage -- to move in the opposite direction" -- Albert Einstein |
-- http://mail.python.org/mailman/listinfo/python-list