6
votes
How to handle constructors or methods with a different set (or type) of arguments in Python?
Python doesn't accept multiple methods with the same name, period. One method does one thing.
I've seen different approaches recommended on how to handle this ... classmethods (like you out …
0
votes
Preventive vs Reactive C# programming
It's hard to discuss the best use of exceptions without an overall discussion of exception strategy. For instance, your strategy could be any one of the following:
handle all exceptio …
0
votes
Is it better to use ADO or DAO in Access 2007?
DAO just rocks in terms of performance compared to ADO. There's no comparison.
…
7
votes
Using try vs if in python
Your function should not return mixed types (i.e. list or empty string). It should return a list of values or just an empty list. Then you wouldn't need to test for anything, i.e. your code collaps …
