0 votes
in Python by
How to create an empty class in Python?

1 Answer

0 votes
by

To create an empty class we can use the pass command after the definition of the class object. A pass is a statement in Python that does nothing.

...