Friday I had a discussion with someone about the following contruction:
class C(....
c = C()
d = C()
...
(c if some_boolean else d).some_function_of_class_C()
Is this kind of if statement acceptable/encouraged?
The problem is that a lot of people I work with have C experience but not that much Python experience and are not used to such statement (same like list comprehension). However, Python is not C and I think the advantages of the Python language should be used. Or not?
(btw, I use normal function names and variable names but it is just for the sake of this example to keep it sample. Also I do not only call f() but some more functions (like f().g() which I woud have to repeat completely in that case.
C c; C d; ... (some_boolean ? c : d)->some_function_of_class_C();It's still a terribly idea in C though. – delnan Aug 18 '12 at 16:58