0
votes
Which is more pythonic, factory as a function in a module, or as a method on the class it creates ?
A staticmethod rarely has value, but a classmethod may be useful. It depends on what you want the class and the factory function to actually do.
A factory function in a module would always …
7
votes
Beginner wondering if his code is ‘Pythonic’
Just use 'import math' and 'math.sqrt()' instead of 'from math import sqrt' and 'sqrt()'; you don't win anything by just importing 'sqrt', and code quickly gets unwieldy with too many from-imports. …
