Search Results

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 …