+2 votes
in Programming Languages by (73.8k points)
How to declare a minimal class in Python that will do nothing?

1 Answer

+1 vote
by (348k points)
selected by
 
Best answer

pass statement can be used for creating minimal classes:

class AnEmptyClass:
    pass

Related questions


...