Comment on How many lines of Java would this take?parentComments−rudd16yIt's actually the same length in Python. Just take out the extra line breaks from the gist: def hasmethods(obj, *meth_names): return all(hasattr(getattr(obj, m, None), '__call__') for m in meth_names)−ighostOP16yTechnically it's one line without semicolons in Python
Comments
It's actually the same length in Python. Just take out the extra line breaks from the gist:
Technically it's one line without semicolons in Python